0
votes
1answer
40 views

Rotation in OpenGL ES 2.0

I have a 2x4 matrix. which represent 4 points of a square. I need to rotate said square by x radians (which obviously can be converted to degrees) with the rotation point/ anchor being the center of ...
1
vote
1answer
55 views

What is the mistake in converting a byte array to bitmap in android? (the byte array is sent from a c/c++ server, android beeing the client)

I'm developing an android app that sends it's accelerometer and gravity sensor data to a c/c++ server which uses openGL library to make a 3D shape rotate on the screen. I want to send back to the ...
0
votes
1answer
40 views

Depth texture as color attachment

I d'like to attach a depth texture as a color attachment to the framebuffer. (I'm on iOS and GL_OES_depth_texture is supported) So I setup a texture like this: glGenTextures(1, &TextureName); ...
1
vote
2answers
180 views

Create openGL context in linux console(Raspbian)

I want to make a minimal visual display in console with openGL, but as far as my knowledge goes there has to be a window system involved(glut, glfw, sdl, etc..). I've seen omxplayer build a graphic ...
0
votes
2answers
137 views

How to draw near front clipping plane?

I am trying to draw object in OpenGL near front clipping plane. There is already defined path, and a camera is moving down the path. Now, I want to draw object that is moving with a camera, bot is not ...
6
votes
1answer
102 views

When does OpenGL get finished with pointers in functions?

OpenGL has a number of functions that directly take pointers. Some of them read data from those pointers, others write data to those pointers. However, OpenGL functions often don't execute ...
0
votes
1answer
143 views

ios opengl es render texture on clean C

sorry for my english I want to draw textures on clean C, no objective c! that it is necessary to write a library for ios / android I draw - (BOOL)createFramebuffer{ glGenFramebuffersOES(1, ...
0
votes
2answers
221 views

OpenGL slows down when rendering nearby objects on top of others

I am writing an iOS app using OpenGL ES 2.0 to render a number of objects to the screen. Currently, those objects are simple shapes (squares, spheres, and cylinders). When none of the objects overlap ...
1
vote
2answers
78 views

OpenGL app error caused by bbutil.c

Hi I am trying to follow this tutorial to draw a cube. I am using bbutil.h and bbutil.c files from this source. But I am always getting error bbutil must be compiled with either USING_GL11 or ...
-2
votes
2answers
87 views

Why does texImage2D always give invalide operation error?

Here is my code, i can't found where does the problem hides. bool setupGraphics(int w, int h) { printGLString("Version", GL_VERSION); printGLString("Vendor", GL_VENDOR); ...
0
votes
1answer
126 views

Trouble with simple VBO example

I'm trying to get a super simple GLFW and VBO example running, but I'm stuck. I've used glBegin and glEnd for other projects, but I'm trying to update my code to work with OpenGL ES 2, but for now I ...
1
vote
0answers
232 views

Android NDK OpenGL ES rendered graphics to Java bitmap

I’m troubled with retrieving bitmap out of OpenGL ES 1.0 rendering. Graphics rendering is done in Android NDK and I want to display bitmap in Android Java. I know that I have to use glReadPixels ...
1
vote
1answer
110 views

Problems with compiling C++ Source for Converting .off Files to XML Readable by Android OpenGL ES

I found a method for importing 3D models to Android's OpenGL on Stackoverflow here: Is there a way to import a 3D model into Android? Attempting to follow the instructions I copied the source and ...
0
votes
1answer
249 views

glReadPixels not working on iPhone

I'm trying to take a screenshot of a GLView on the iPhone. I wrote the following code: [self setContext]; GLint backWidth, backHeight; glGetRenderbufferParameterivOES( GL_RENDERBUFFER_OES, ...
2
votes
1answer
99 views

Using GL_UNSIGNED_SHORT_1_5_5_5_REV on iPhone

I've been suffering from severe performance problems rendering a regularly updated image to the iphone. After trying it on the iPad 3 today I found out that I was only getting 2fps. This was WAAAY ...
1
vote
2answers
121 views

Exporting a model from blender for use in ios app

I have created a model in blender which I have exported out as an .obj file. In order for open gl to render the triangles, I believe the co-ordinates have to be counter clockwise. Does blender do this ...
0
votes
2answers
391 views

Convert GLfloat [] array to GLfloat * array

Is there a quicker way to convert the following data into a c style pointer array? GLfloat verticalLines [] = { 0.59, 0.66, 0.0, 0.59, -0.14, 0.0 } My current approach is to manually iterate ...
1
vote
0answers
175 views

How to write an android c opengl application and load it using adb on a rooted phone?

I would like to write an userspace application written in c or c++ using opengl and run it on Android smartphone. In the AndroidManifest.xml I have these written: android:label="Graphics/OpenGL ...
6
votes
1answer
364 views

Drawing to FBO - sprite inverted up and down issue

Well, usage of FBO is wide and it helps make complex effects much easier. I set FBO and draw to it, then render FBO textured quad, without any problem, even test simple screen processing color shader. ...
0
votes
1answer
121 views

What is the use of glMatrixMode() and glLoadIdentity() in the OpenGL ES BlackBerry 10 2d walkthrough

In the walk through for blackberry 10 sdk using opengl es. it uses 2 commands namely: glMatrixMode(GL_PROJECTION); glLoadIdentity(); and later: glMatrixMode(GL_MODELVIEW); glLoadIdentity(); I ...
2
votes
1answer
361 views

Choosing language and design for a cross platform OpenGL ES 2.0+ engine - iOS & Android [closed]

I'm starting to code something in OpenGL ES 2.0+ and EGL for Android, now to achieve the maximum compatibility across multiple devices, i would like to ask: what language i'm supposed to pick, Cor ...
4
votes
3answers
165 views

Restoring OpenGL State

I want to write a general purpose utility function that will use an OpenGL Framebuffer Object to create a texture that can be used by some OpenGL program for whatever purpose a third party programmer ...
2
votes
1answer
191 views

Does glColorMask affect glClear

What should the following code do assuming something was drawn before the code below? glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_TRUE); glClearColor(0.0, 0.0, 0.0, 1.0); ...
0
votes
1answer
65 views

EGL_BAD_CONFIG When Creating A PixelBuffer

I am having trouble creating a PixelBuffer in OpenGL ESv2. If my config specifies EGL_WINDOW_BIT I can successfully call eglCreateContext. However, when using EGL_PBUFFER_BIT I am getting an ...
1
vote
1answer
106 views

BAD_CONFIG during CreateContext

I am attempting to create a GPGPU program using Open GLESv2. I've laid out the idea in some demo's I've found and now I'm implementing it. I am stuck on creating the Rendering Context though. I do ...
2
votes
1answer
124 views

Using OpenGL extensions conditionally

I'm a bit confused about how to use OpenGL extensions (specifically VBOs and draw_texture). I know you can check for them in the GL_EXTENSIONS string, but then what? If the extensions are available ...
0
votes
1answer
66 views

taking snapshot during gameplay with opengl

I am working on a game for blackberry playbook and in that game there is a requirement that during gameplay it should take snapshots in random positions and for this requirement I am using following ...
1
vote
1answer
339 views

Opengl es 2.0 without egl on desktop (windows)

I have a simple program on windows using visual studios 2008. In my code i use gl functions i.e #include GLES2/gl2.h and also #include EGL/egl.h In the code i use EGL for initialization for ...
1
vote
2answers
680 views

format conversion

In OpenGL ES 2.0 after reading the framebuffer and converting it to RGBA frames. I want to convert it to YUV format. I tried using this table. Which ignore alpha component. When i do that and see the ...
1
vote
1answer
367 views

Convert byte array to image in OpenGL ES 2.0

glViewport ( 0, 0, 320, 480 ); byte* memory glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, 1 ); glReadPixels(0, 0, width, height, GL_RGB, GL_UNSIGNED_BYTE, memory); I want to convert the byte ...
0
votes
1answer
158 views

Linux opengl es 2.0 from windows

I have few graphic effects on image which i am able to run on windows 7 visual studios 2008 with opengl es 2.0. on ARM Emulator. Now i want the to port my implementation to linux for embedded ...
1
vote
1answer
177 views

Encoding into NSValue array of structs

Im trying to encode into a NSValue an multidimensional array of structs. This is the struct: typedef struct { float Position[3]; float Color[4]; } Vertex; const Vertex Vertices[] = { // ...
2
votes
2answers
510 views

Is OpenGL backwards compatible with OpenGL ES?

OpenGL ES claims to be a subset of OpenGL, which theoretically means any OpenGL ES program can run as regular OpenGL on a PC; however, it seems OpenGL ES has slightly different naming conventions for ...
5
votes
1answer
830 views

How to re-write 2D OpenGL app for OpenGL ES?

I am working on an OpenGL 2D game with sprite graphics. I was recently advised that I should use OpenGL ES calls as it is a subset of OpenGL and would allow me to port it more easily to mobile ...
2
votes
1answer
2k views

glColor4f() - effect of alpha value

I am using glColor4f(). Surprisingly, changing the alpha, i.e., the fourth argument doesn't cause any change in transparency. The code segment is: const GLfloat squareVertices[] = { 0.5, 0.5, 0.0, ...
0
votes
1answer
1k views

Texturing a quad (triangle strip) OpenGL ES 2.0 [closed]

I got 256*256 texture and everything is fine, but part i trying to map whole texture on whole quad is ruined. My quad textured only by 1/5 from left to right, rest is black which means no texturing ...
0
votes
1answer
940 views

glDrawArrays crash on enabling color vertex array OpenGL ES 2.0

Code below is working fine and draw a colored triangle equal sides: GLfloat triangle_pos[] = { -0.5, -0.25, 0.0, 0.5, -0.25, 0.0, 0.0, ...
0
votes
2answers
381 views

glFrustrum variant in Opengl ES 2.0 - how fix blank screen?

Well question is similiar to my previous one about glOrtho variant glOrtho OpenGL es 2.0 variant how fix blank screen? Triangle below is draw perfectly at ortho projection (without projection it's ...
4
votes
3answers
616 views

How is GLKit's GLKMatrix “Column Major”?

Premise A When talking about "Column Major" matrices in linear memory, columns are specified one after another, such that the first 4 entries in memory correspond to the first column in the matrix. ...
0
votes
1answer
1k views

glOrtho OpenGL es 2.0 variant how fix blank screen?

I try to remake a OpenGL ES 2.0 example for Android http://developer.android.com/resources/tutorials/opengl/opengl-es20.html to Anroid NDK OpenGL ES 2.0 example. I succeded in all except making a ...
2
votes
1answer
2k views

Sobel filter in C/C++ using OpenGL ES

I'd rather not recreate the wheel if I don't have to and this must have been done before. Are there any implementations of a Sobel filter using OpenGL ES?
6
votes
1answer
396 views

Can an OpenGL ES fragment shader change the depth value of a fragment?

Can fragment shader in OpenGL ES 2.0 change the Z value (depth) of a pixel? How is this achieved in OpenGL ES 2.0?
0
votes
1answer
624 views

Need assistance with simple OpenGL ES 2.0 code

I am a complete idiot at OpenGL, and I can't figure out why my code isn't working, only the clear color shows. I am trying to set up some simple rendering on iOS. Please can somebody help me? My main ...
1
vote
4answers
323 views

How does OpenGL API like glColorPointer know the size of array that passed as a pointer?

This is the defination of glColorPointer from opengl.org : void glColorPointer(GLint size,GLenum type, GLsizei stride, const GLvoid * pointer); Parameters size Specifies the ...
-4
votes
1answer
224 views

Transposing Matrices - Horizontal to Vertical - OpenGL ES - iPhone

Say I have the following matrix which is vertical : {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15} And I want to translate this so that it is ordered horizontally - i.e : ...
0
votes
1answer
368 views

Converting an NSMutableArray to an Array of C Structs - iPhone - OpenGL ES

I have an OpenGL ES based app which parses in information from an xml file using NSXMLParser. As the vertice information comes in for each scene object in the file, I am saving it in an NSMutableArray ...
0
votes
1answer
169 views

Sharing Struct Information Between Classes - Objective C - OpenGL ES

I have an OpenGL ES based app with the following structure : I parse vertices from a DAE file which contains a number of objects (using NSXMLParser). As I parse each set of vertices, I create an ...
1
vote
2answers
2k views

OpenGL ES 2.0 texture appears black

I am working on an application using OpenGL ES 2.0 for an embedded device. This is my fragment shader: varying vec2 v_texCoord; uniform sampler2D s_texture; void main() { gl_FragColor = ...
6
votes
5answers
723 views

Confussion between OPEN GL ES and EGL library

I was reading android source code in that I am not getting what does OPEN GL ES library do and what does EGL library do.? Is there any relationship between this two libraries? I have looked at ...
0
votes
1answer
297 views

OpenGL-ES Android: function pointers esUtil.h

I am in a project on OpenGL in Linux FC16. We have been doing a lot of 3D and so far so good. This month the company decided to port the whole system to OpenGL-ES. I have installed the OpenGL ES as ...

1 2