Tagged Questions
0
votes
1answer
183 views
Rendering a texture in another class' RenderBuffer/FrameBuffer in OpenGL ES 2.0 for iOS 5
I have two UIViews, each with their own separate renderBuffers and frameBuffers. They belong to different ViewControllers. I already have them connected via NSNotificationCenter, so that is all set.
...
0
votes
1answer
104 views
OpenGL ES - Pixel 'Interference' at bottom of texture
I'm loading an int* array of RGBA pixel data from a UIImage, doing manipulation on it, then setting the pixels to a Glubyte* texture buffer and writing them to the texture with
...
1
vote
1answer
68 views
New Sprite Frame remains as same of previous Sprite Frame
I am beginner in the Cocos2D gaming. When I change the Sprite with
[sprite setTexture:[[CCTextureCache sharedTextureCache] addImage:@"anotherSprite.png"]];
When I am changing this image in the ...
0
votes
0answers
423 views
iPhone OpenGL ES background texture problems
I am trying to set a .png file as my background in OpenGL, with the hopes of drawing more objects on top of it. I have an image that is a 320x480 RGB image. I setup my vertices, as follows:
- ...
0
votes
1answer
477 views
iPhone OpenGL ES Texture Pipeline for JPEG
I am having trouble getting my texture pipeline working for JPEGs. Everything works right for PNGs but converting over has been an issue.
I am loading by image data via UIImage and ...
0
votes
1answer
1k views
how to share texture between 2 OpenGL context?
I'm rendering successfully my OpenGL view by drawing an offscreen texture (which is created by an offscreen framebuffer).
draw -> offscreen FBO/Texture ------> onscreen FBO ---> render ...
2
votes
1answer
230 views
is it possible to map multiple textures onto a shape in openGL ES?
Im new to OpenGL ES and wanted to create a bunch of triangles that would represent a grid of squares that i could map map tiles to. Is it possible to map separate textures on the same shape in OpenGL ...
0
votes
1answer
929 views
Background Texture Image in iPhone Drawn with Distortion in OpenGL ES
I'm having a problem rendering a background texture in my iPhone app. The following images show the problem:
http://www.tojamgames.com/wp-content/uploads/2010/09/background_layer1.png
...
0
votes
1answer
668 views
Texture2D text color changed after updating from iOS 3.0 to 4.0
I'm using an OpenGL Texture2D class and initWithString method to display strings to the user. When running with iOS 3.0 and XCode 3.1.3 all the text would appear black in the simulator and white on ...
1
vote
0answers
308 views
Texture2D implementation on iPhone problem
Im trying draw text using Texture2D but all I get is a big white square. What wrong?
glPushMatrix();
glRotatef(rodar+30, 0, 1, 0);
glEnable(GL_BLEND);
tex = [[Texture2D alloc] ...
0
votes
2answers
351 views
Im Stumped, Why is UIImage\Texture2d memory not being freed
I've been looking everywhere trying to find a solution to this problem. Nothing seems to help.
I've set up this basic test to try to find the cause of why my memory wasn't being freed up:
if ...
1
vote
1answer
127 views
How can I create a texture from an AtlasSpriteManager?
What I want to do is create a huge texture(w/ width of more than 1024) using a 1024x1024 image. I can retrieve the images using an AtlasSpriteManager, but whenever I try to retrieve the texture from ...
2
votes
1answer
744 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, ...
2
votes
2answers
994 views
Is it correct to load openGL textures like this?
I started some months ago an OpenGL project which became larger and larger... I began with the crashLanding sample and i use Texture2D.
I also use a singleton class to load my textures, and here is ...
0
votes
1answer
1k views
iPhone : creating Texture2D much slower when image loaded from file in app's Documents, why?
Slower than what? slower than creating the same textures from an image loaded from the app bundle.
How much slower ? 80 times slower on iPhone, similar ratio (but faster overall) on Mac.
My example ...
3
votes
1answer
2k views
Texture2D iPhone SDK openGL
I'm using the Texture2D class in an iPhone game using OpenGL ES.
Are their any good tutorials for understanding the Texture2D class?
Specifically I'm looking at the initWithString method for ...