[Solved] Apple Inc. using OpenGL ES [closed]

[ad_1] You can use OpenGL ES 2.0 on device that support it, older models of the iPhone (orginal and 3G) and iPod Touch ( 1g and 2g) do not support OpenGL ES 2.0. OpenGL ES 1.1 is available on all devices. [ad_2] solved Apple Inc. using OpenGL ES [closed]

[Solved] How to show background bitmap on 2D

[ad_1] When looking at the uv-coordinates and the vertex coordinates, one can see that they do not fit together: vertex ———————————————- 0.0f,0.0f,-1.0f, 0.0f, 0.0f, with,0.0f,-1.0f, 0.0f, 1.0f, <– vertex: change in x, uv: change in y with,heigh,-1.0f, 1.0f, 1.0f, 0.0f,heigh,-1.0f 1.0f, 0.0f In addition, you tell OpenGL in this line: GLES20.glVertexAttribPointer(mTextureCoordinateHandle, 3, GLES20.GL_FLOAT, false, 0, … Read more

[Solved] How to pass a vertex array as an argument in Objective-C? [closed]

[ad_1] Sorry for my typo in the post… Here is how I managed to fix it: – (GLuint)make:(float[])meshVerts withSizeOfMeshVerts:(int)sizeMeshVerts { GLuint _vertexArray; GLuint _vertexBuffer; glEnable(GL_DEPTH_TEST); glGenVertexArraysOES(1, &_vertexArray); glBindVertexArrayOES(_vertexArray); glGenBuffers(1, &_vertexBuffer); glBindBuffer(GL_ARRAY_BUFFER, _vertexBuffer); glBufferData(GL_ARRAY_BUFFER, sizeMeshVerts, meshVerts, GL_STATIC_DRAW); } [ad_2] solved How to pass a vertex array as an argument in Objective-C? [closed]

[Solved] How to make each component of a 3D OpenGL object touchable in Android? [closed]

[ad_1] I think you are looking for ray picking or ray intersection. This answer has a link to a iOS sample/video which I believe is what you are after. https://gamedev.stackexchange.com/questions/12360/how-do-you-determine-which-object-surface-the-users-pointing-at-with-lwjgl/12367#12367 Another related SO question: Implementing Ray Picking That should get you started on what you need to do. 1 [ad_2] solved How to make each … Read more