Tagged Questions
10
votes
1answer
2k views
Writing to then reading from an offscreen FBO on iPhone; works on simulator but not on device?
I'm trying to do some image manipulation on the iPhone, basing things on the GLImageProcessing example from Apple.
Ultimately what I'd like to do is to load an image into a texture, perform one or ...
4
votes
6answers
3k views
OpenGL: How to implement an “eraser” tool?
I'm working on a game for the iPhone that has a drawing/paint mechanic involved and I'm having problems trying to create a tool that would erase things already painted.
The main problem is that the ...
3
votes
1answer
1k views
Render to texture or offscreen framebuffer
I have a problem with rendering to texture and offscreen framebuffer with OpenGL ES on iPhone.
First image shows mahjong tiles rendered to CAEAGLLayer directly and this is correct. Second one shows ...
3
votes
2answers
1k views
OpenGL ES 2.0 FBO creation goes wrong with unknown error
I've been struggling with this for a while now, and this code crashes with, to me, unknown reasons. I'm creating an FBO, binding a texture, and then the very first glDrawArrays() crashes with a ...
3
votes
1answer
1k views
Trying to render to texture using framebuffer always results in white texture
Using a couple of posts here in StackOverflow, I created what is supposed to be a simple render-to-texture using a framebuffer.
The problem here is that it's not working. Something is broken in the ...
3
votes
4answers
3k views
How to push pixels faster on the iPhone?
I asked before about pixel-pushing, and have now managed to get far enough to get noise to show up on the screen. Here's how I init:
CGDataProviderRef provider;
bitmap = malloc(320*480*4);
provider = ...
2
votes
2answers
118 views
Is there a way to render pixels directly on iPhone?
I want to port a game I've made which renders the screen itself 50 fps (doesn't use opengl).
What is the best way to port this to the iPhone?
I was reading about Framebuffer Objects. Is this a good ...
2
votes
1answer
481 views
iPhone opengl ES copy framebuffer into the renderbuffer
Hy folks,
I'm working on an animation in opengl es. The animation should draw squares. This works already, but how can I copy the content from the Framebuffer into the renderbuffer, the problem is ...
2
votes
2answers
2k views
glFramebufferTexture2D performance
I'm doing heavy computation using the GPU, which involves a lot of render-to-texture operations. It's an iterative computation, so there's a lot of rendering to a texture, then rendering that texture ...
2
votes
1answer
147 views
Is it possible to restore a previous GL framebuffer?
I'm working on an iPhone app that lets the user draw using GL. I used the GLPaint sample code project as a firm foundation, but now I want to add the ability for the user to load one of their previous ...
2
votes
1answer
278 views
Capturing camera framebuffer on iPhone 3G (not S)?
I've downloaded a free application from App Store (very nice application for instance) called ReadTheQRCode and it dont asks you to take the picture to decode the QRCode, my point is, is the ...
2
votes
2answers
901 views
Pushing pixels on the iPhone
What's the fastest way to get a framebuffer and render to in software on the iPhone?
Basically getting into a mode 13h style thing going so I can make some effects? :)
1
vote
3answers
56 views
Keep the biggest values from source AND destination (bitwise OR) in OpenGL ES 2.0
let me explain the title a little. In the framebuffer I have some color values (for simplicity I am going to refer only to one color channel in binary e.g. 00000001 in a specific pixel). Then in that ...
1
vote
1answer
448 views
glFramebufferTexture2D fails on iPhone for certain texture sizes
When I try to attach a texture to a framebuffer, glCheckFramebufferStatus reports GL_FRAMEBUFFER_UNSUPPORTED for certain texture sizes. I've tested on both a 2nd and 4th generation iPod Touch. The ...
1
vote
1answer
516 views
How to switch between rendering and presenting framebuffers in iPhone OpenGL ES 2.0?
iPhone OpenGL ES 2.0..
First frame, render to my framebuffer then present it (as it works by default in the template OpenGL ES application).
On the next frame, I want to use that rendered ...
1
vote
1answer
2k views
iPhone OpenGL ES Contexts and Framebuffers
I'm attempting to setup a framebuffer properly in order to support depth and correct perspective. I'm using the OpenGL ES Application template in XCode and I have been following the guidelines as ...
1
vote
1answer
339 views
How should I organize OpenGL ES 1.x 2D layer tree?
I'm developing a cute puzzle app - http://gotoandplay.freeblog.hu/categories/compactTangram/ - , and for performance reasons I decided to render the view with OpenGL. I started to learning it, I'm ok ...
1
vote
1answer
926 views
OpenGL ES Framebuffer weird mirroring when drawing
I really can't wrap my mind around this:
Previously I couldn't get Framebuffers to work, but I've got it going now. However, there is this incredibly weird mirroring going on with the texture ...
0
votes
1answer
246 views
How do I create a CVPixelBuffer with 32RGBA format for iPhone?
When trying to create a 32 bits RGBA CVPixelBuffer, I constantly get errors.
Most notably error -6680 which means: "The buffer does not support the specified pixel format."
This is the code ...
0
votes
1answer
424 views
OpenGL ES 2.x: How to Discard Depth Buffer glDiscardFramebufferEXT?
I read iOS OpenGL ES Logical Buffer Loads that a performance gain can be reached by "discarding" your depth buffer after each draw cycle. I try this, but it's as my game engine is not rendering any ...
0
votes
1answer
813 views
How to do something like Photoshop's screen Blending with glBlendFunc (OpenGL ES 1.x)?
I have a simple one channel (8bit) bitmap with luminance data only, and I want to blend it with the existing framebufer like Screen blending mode does it in Photoshop.
So the source's white pixels ...
0
votes
2answers
800 views
How to collapse five OpenGL textures into one?
I want to merge 5 "sublayers" to one single texture (you know, somethin' like Flatten Image in Photoshop) in OpenGL ES 1.x iPhone. I'm new to OpenGL, and just haven't find the answer yet.