Hi,
I am working on a java application that draws some primitives pixelwise. Then I decided to create a jni library that calls some functions which draw primitives using OpenGL, such that the...
Type: Posts; User: atteal
Hi,
I am working on a java application that draws some primitives pixelwise. Then I decided to create a jni library that calls some functions which draw primitives using OpenGL, such that the...
i used the glGetError() but there were no errors i am using the code below:
glEnable( GL_TEXTURE_2D ); // Enable texture mapping
GLubyte ds_pattern2[] = {0x00, 0xFF, 0x00,...
Did you have any good results now?
I have a related issue. I attempted to create a texture from binary data using:
unsigned char bin_data[] = {0xff, 0xff, 0x00, 0x00, 0xff,0xff, 0xff, 0xff};...
Hi i am trying to use tessellation in opengl in order to draw concave polygons through JNI calls. As regards tessellation the shape is perfectly drawn however i tried to map a texture on to it...
Hi I am quite new to OpenGL, my task is to get an application using an OpenGL for some testing on a Linux (Suse).
I ve been told there is a certain demo containing a rotating cube which is usually...