Tagged Questions
0
votes
0answers
422 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
1k views
how i can create my own CCTexture2D copying a piece of another CCTexture2D
I found how to repat single image to make a fitting background for my level:
[self setTextureRect:CGRectMake(0, 0, width, height)];
ccTexParams params = {GL_LINEAR,GL_LINEAR,GL_REPEAT,GL_REPEAT};
...
1
vote
0answers
307 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] ...
2
votes
1answer
740 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, ...