Tagged Questions

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 ...
2
votes
2answers
297 views

Image size for OpenGL ES texture

I don't really understand about OpenGL ES yet. I've only learn about drawing triangles and so . I've yet to learn about texture. I heard that in some devices an image with width or height to be the ...
1
vote
1answer
156 views

Drawing text as textures on squares does not show anything

I'm new to OpenGL and I'm developing an Augmented-reality application for Android. Until now, I was drawing white squares, perpendicular to the camera, pointing the user to the direction where a ...
1
vote
1answer
736 views

OpenGL:ES on iPhone - Texture2D size and display questions

I'm having issues with Texture2D and I'd like to understand how to use it better. I've taken the Crashlander Texture2D class from here and a default OpenGL project in XCode 4, forcing it to load ...
1
vote
1answer
139 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 ...
1
vote
1answer
282 views

Problems with glDrawTex_OES

I'm not sure I'm using glDrawTex_OES correctly. In fact, I'm sure I'm not because I'm getting a black rectangle on the screen rather than the intended texture. To get the silly points out of the ...
1
vote
4answers
4k views

Android GLSurfaceView glTexImage2D glDrawTexiOES

I'm trying to render a 640x480 RGB565 image using OpenGL ES on Android using GLSurfaceView and Native C code. Initially I had a 0x0501 error with glTexImage2D, which I was able to resolve by changing ...
1
vote
1answer
528 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
462 views

How to Draw pixel data taken from the backbuffer back to itself?

I'm working on a mobile application for Symbian 5th edition using OpenGLES. This application is a pretty standard 2D app, and I make no use of the DepthBuffer. I need to grab a snapshot of the ...
0
votes
1answer
33 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 ...
0
votes
0answers
194 views

Android OpenGL: Animated Sprite

SOLUTION FOUND I finally found out where the problem was. Every texture will be automatically scaled up to a size of power of 2. I forget to calculate these differences into the new ...
0
votes
1answer
121 views

Overlapping 2 transparent Texture2Ds in OpenGL ES

I'm trying to make a 2D game for the iPad with OpenGL. I'm new to OpenGL in general so this blending stuff is new. My drawing code looks like this: static CGFloat r=0; r+=2.5; r=remainder(r, 360); ...
0
votes
0answers
204 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
0answers
535 views

glTexImage2D throws error 1281 for height or width > 128 pixels

I' new to openGL ES 1.0/1.1 programming, and this error's been haunting me for a few days.. I'm trying to init a texture with glTexImage2D, however it always throws a 0x501/1281 error whenever I try ...
0
votes
1answer
211 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
172 views

android texture2D causes loss of 3d colour

im trying to draw a 3d object, and then draw a 2d texture on the screen. The texture is created with this function at onSurfaceCreated(GL10 gl): public static int loadText(GL10 gl, float width, float ...
0
votes
1answer
363 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 ...
0
votes
0answers
486 views

alpha blending in opengl ES 1.0

Im working my Android map app in opengl ES and im having some blending issues. Im new at opengl/ opengl es, and im trying to figure out the correct blending enums for this particular graphic. Im ...
0
votes
1answer
669 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
479 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 ...