Tagged Questions
The eaglview tag has no wiki summary.
12
votes
1answer
375 views
EAGLView to UIImage color conversion problem
I have an EAGLView (taken from Apple's examples) which I can successfully convert to a UIImage using this code:
- (UIImage *)glToUIImage:(CGSize)size {
NSInteger backingWidth = size.width;
NSInteger ...
4
votes
3answers
3k views
Framebuffer Object Problem
Hello I'm programming in OpenGLES for the iPhone but I'm currently stuck with a strange framebuffer object error.
At first I was following a few tutorials from Simon Maurice:
...
3
votes
2answers
1k views
How can I blend between my UIView and my EAGLView?
I have an opengl scene rendering on an EAGLView layer and some other elements (circles and such) rendering on a UIView (which is a sibling of the EAGLView, positioned above it). Is it possible to ...
3
votes
3answers
2k views
How to get UIImage from EAGLView?
I am trying to get a UIImage from what is displayed in my EAGLView. Any suggestions on how to do this?
3
votes
1answer
2k views
Capturing EAGLview content WITH alpha channel on iPhone
have been struggling with this issue for quite some time now and couldn't find an answer so far. Basically, what I want to do, is capturing the content of my EAGLview and then use it to merge it with ...
3
votes
3answers
2k views
How do I grab an image form my EAGLLayer?
I'm looking for way to grab the content of my opengl (as UIImage) and then save it into a file. I'm now giving glReadPixels a try though I'm ont sure I'm doing the right thing as of what kind of ...
2
votes
0answers
134 views
EAGLView with CGAffineTransform problem on iOS 4.3
I have a weird problem with OpenGL on iOS 4.3.
I have a ViewController with some views and images in the foreground. In the background I have an EAGLView drawn from a CGImage.
When I try to pinch, ...
2
votes
3answers
2k views
Why is my EAGLVIew not rendering anymore in iOS 4.2?
Upgrading to the iOS SDK 4.2 I'm experiencing several misbehaviors in my application (another one is asked here). The one I'm gonna ask your help for concerns an OpenGL view (an EAGLView subclass) ...
2
votes
1answer
510 views
How to use gesture recognizer in an OpenGLES application of iPhone?
While I know how to use gesture recognizer in a view-based application,but when I apply the same ideas in a OpenGLSE-based application:
for example,
I add a TapGestureRecognizer,and when I tap on the ...
2
votes
1answer
175 views
iPhone: How much OpenGL cleanup do I need to do when a context goes away?
I several views in an iPhone app which happen to use independent openGL contexts. They are not necessarily long-lived so they go away before the process does. And they have a couple textures in each.
...
2
votes
2answers
513 views
Looking for Tim Omernick's Fireworks iPhone app
Does anyone have the Fireworks app that Tim Omernick (of ngmoco) posted here:
gamemakers.ngmoco.com/post/111712416/stanford-university-and-apple-were-kind-enough-to
He originally provided a download ...
2
votes
1answer
366 views
Can I have multiple full-screen OpenGL views (EAGLView) displayed at the same time on iPhone?
Can I have 2 full-screen EAGLView-s (the OpenGL layer implementation from Apple's sample code), stack them on top of each other, draw on them independently and then see both images?
(I suppose the ...
2
votes
1answer
2k views
Can I use an EAGLView in my UIViewController?
I have a UIViewController that instantiates several UIImageViews on the screen. Is it possible to instantiate an EAGLView (like the one in the OpenGL ES template in the iPhone SDK) in a similar manner ...
2
votes
5answers
6k views
Screen-to-World coordinate conversion in OpenGLES an easy task?
The Screen-to-world problem on the iPhone
I have a 3D model (CUBE) rendered in an EAGLView and I want to be able to detect when I am touching the center of a given face (From any orientation angle) ...
1
vote
0answers
26 views
iOS: The grey screen between Default.png and the first OpenGL ES frame
I'm trying to port my previous openGL iPhone app to use Xcode's new OpenGL ES template, which uses CADisplayLink.
WHat I've noticed is that after Default.png is displayed, and before the first frame ...
1
vote
0answers
51 views
Switching from EAGLView to UITableView in iOS
I am working on a map navigation application for the iOS system. I currently have the map loaded in an OpenGL ES 2.0 view, which allows me to scroll etc. On the map I have placed a UIButton which ...
1
vote
1answer
116 views
EAGLView to UIImage timing question
I have a EAGLView that I wish to convert into a UIImage. I can do this with the solution posted here:
How to get UIImage from EAGLView?
However, I can only accomplish this if a small amount of time ...
1
vote
1answer
243 views
iOS memory warning breaking EAGLView
When I get a memory warning level-1 my EAGLView starts spitting out lines of openGL errors (502 & 506) and the app doesn't crash but the EAGLView becomes unresponsive. the errors are spamming out ...
1
vote
0answers
350 views
OpenGL 500 error in cocos2D-iphone on CCRenderTexture end
Working on a drawing app for ipad and using the CCRenderTexture as a canvas upon which sprites are painted. The draw loop I use is based on the one in the cocos example for the render texture class.
...
1
vote
1answer
273 views
How to make OpenGL ES template with toolbar autorotate
I've been trying to figure out how to do this for several days now with only limited success. I've managed to manually handle NSNotifications that tell me when the view orientation changes, then I use ...
1
vote
1answer
164 views
destroyFramebuffer method in an openGL app
in my OpenGL type of iphone app, I have this method below in the GLView implementation.
i noticed everytime i started up the app during development that the last frame that was present when i shut ...
1
vote
0answers
346 views
Need Help Adding UIViewController Programatically
I need to load an action sheet on a GLSprite derived game. I tried adding a UIViewController but when I display the actionsheet none of my touches are registering, and I can't figure out how to close ...
1
vote
1answer
527 views
Textures not drawing if multiple EAGLViews are used
I'm having a bit of a problem with Apples EAGLView and Texture2D. If I create an instance of EAGLView and draw some textures, it works great. However, whenever I create a second instance of EAGLView, ...
1
vote
1answer
755 views
iPhone, rotated + EAGLView, rotated =
...frustration. I want my game to be run only in landscape mode. I have added the appropriate key/value to the Info.plist file that forces the device orientation to be correct at launch.
I'm now ...
1
vote
2answers
3k views
How to get UIImage from texture of an EAGLView?
I am trying to get a UIImage from a texture I loaded into EAGLView using the following way:
//Try to get UIImage from EAGLView and assign to imageDataPhoto1
...
1
vote
2answers
520 views
Can I get the color of the pixel at a Touch Point on an EAGLView
I want to get the color of the Pixel at a specific Touch Point on an EAGLView. Is this possible, and if so, how?
0
votes
1answer
38 views
iOS: Creating an overlay on top of an EAGLView / GLKView
I'm trying to create an overlay on top of a GLKView (effectively an EAGLView). I'm aware of the performance impact, but in my situation that's not a problem, since the scene is paused in the ...
0
votes
1answer
45 views
EAGLView transparency frames per second
I have a Cocos2d project and I want a constant background throughout the app. In the applicationDidFinishLaunching method of its delegate, I have replaced the line:
[viewController setView:glView];
...
0
votes
2answers
86 views
UINavigationController and pushing an openGL UIView = never ending loops
I am trying to push an opengl UIView to my navigation controller like this
GraphViewController *gvc = [[GraphViewController alloc] initWithTicker:[listOfItems objectAtIndex:indexPath.row]];
...
0
votes
1answer
78 views
Attach CCScene to EAGLView
I am trying to attach my CCScene class to my EAGLView. So my EAGLView is an IBOutlet in Class 1. I connected it and settered and gettered it. Then in my ViewDidLoad in my Class 1 I do:
[[CCDirector ...
0
votes
2answers
123 views
Cocos2d: Memory issue when switching betweens scenes ([EAGLView swapbuffers])
I'm using cocos2d and ran into the following problem:
The first time I initialize a scene I start with:
[[CCDirector sharedDirector] runWithScene: [MenuScene node]];
When switching between scenes, ...
0
votes
1answer
71 views
Accessing a subview from an EAGLView subview
I'm not even sure that it even matters whether or not the subview is an EAGLView, but I'll try to explain anyway:
In my application delegate didFinishLaunchingWithOptions() function, I have the ...
0
votes
2answers
190 views
Using the same EAGLContext across different ViewControllers/EAGLViews
I'm having some issues using the same EAGLContext across EAGLViews. I have two View Controllers, each one has one EAGLView.
Each View Controller allocates a new EAGLContext, and a subsequent ...
0
votes
0answers
81 views
Problem with EAGLView size 768*1024 for Ipad
I am making paint application. For that I want my EaglView of the size 768*1024.
It is running fine on simulator but on actual device it is showing undesired output..
If I set EAGLView to 768*768, it ...
0
votes
2answers
140 views
Multiple EAGLViews but only one copy of each texture - how?
I have an app running on iPad which is using lots of textures, rendering into one EAGLView. Now I need a second EAGLView, sharing textures with the first.
I can get both views rendering fine, in ...
0
votes
1answer
102 views
Should Cocos2D take EAGLview from openFrameworks, or vice versa?
Trying to get Cocos2D and openFrameworks to play nicely together on iOS. Both want to use GL / EAGLview, and of course they can't just both do glView = [[EAGLView alloc] init] because you can't have ...
0
votes
0answers
38 views
How can I refresh EAGLView in tabbar?
I am writing a tabbar app. I am entering some values in the first view (usual UIView). I want drawing to change in the second view in the tabbar (This is an EAGLView). This code so far draws default ...
0
votes
1answer
82 views
Two libraries extend EAGLview and I want to use them both. How?
openFrameworks and cocos2d both have a wrapper for EAGLview.h, and of course you can't just use both. Just adding both libraries (libcocos2d.a and libofxiPhone_iphoneos_Release.a) to my project gives ...
0
votes
0answers
106 views
Synchronizing EAGLView presentation with frame resize on iPhone
I have an EAGLView which I am resizing in an animation, with the animation driven by an NSTimer that calls a draw function. As I resize the EAGLView, I need to adjust the projection for the view to ...
0
votes
2answers
177 views
Force redraw with CADisplayLink
I'm currently using CADisplayLink to show an OpenGL animation which works great. Sometimes, however a parameter changes and I need to redraw the view immediately and can't wait until the next frame is ...
0
votes
1answer
793 views
Forcing keyboard and sub-view orientation on iOS (iPad / iPhone)
We are just putting user input into our game so the user can enter email address etc. The entire game is Gl with no iOS UI at all. The EAGLView does not change orientation, it is always in portrait, ...
0
votes
1answer
280 views
Calculate FPS in opengl game for iphone ( EAGLView )
I used the apple's crash landing example as base to program some small games for iphone. Now i would like to meassure the frames per second in my games.
I'm curious about how can I calculate the FPS ...
0
votes
1answer
115 views
How co call methods of EAGLView from ES1Renderer?
Using the standard OpenGL ES iPad pattern we get such 'structure'. I've read some about delegating, protocols, but still got no direct answer for this particular purpose. Please enlighten me.
Why ...
0
votes
1answer
345 views
Limitation in EAGLView
Can I increase the frame of EAGLView(I am setting CGRectMake(0,0,320*3,480*3) above 1024, If i set frame above 1024 it works correctly in iOS 4.2 but in iOS 4.1 devices its not working if i set frame ...
0
votes
2answers
271 views
Using UIImagePickerController in the game
I want to make a game, where the user can touch a picture of a TV and then choose a picture from their photo library.
I had success working with UITextFields, adding them to my EAGLView as subviews ...
0
votes
1answer
1k views
glDrawArrays crash with EXC_BAD_ACCESS
I'm writing an iPhone application which uses UIView with a CAEAGLayer as its layer. Everything is fine and working apart from 1 small problem: sometimes it crashes with EXC_BAD_ACCESS and the ...
0
votes
1answer
165 views
Pause animation in EAGLView which is in a UITableViewCell
I have an animation in a EAGLView which is itself in a UITableViewCell. How can I pause the animation in the EAGLView when the view is not visible?
Normally, I would simply use the responsible ...
0
votes
1answer
440 views
How can I display my UIImage on an EAGLView (iPhone)?
I have a UIImage.
I have an EAGLView in my app, which is a derivative of the GLPaint ("Shake Me!") sample program.
The UIImage is full-screen (320x480.) Actually, it's a screen-capture of the ...
0
votes
2answers
536 views
Tracking 3D cube position OpenGL?
SHORT INTRO:
I'm having trouble with a 3D cube on a plane. The plane is a grid of squares. The ID number of the square that the cube currently occupies on is stored in a storage-variable. This is so ...
0
votes
1answer
286 views
How to Display ngmoco's Fireworks App Over a UIImageView?
Tim Omernick from ngmoco recently gave a talk at Stanford and demonstrated an interesting fireworks app for the iPhone that he posted up the code for here:
...