Tagged Questions
The gldrawpixels tag has no wiki summary.
3
votes
1answer
935 views
Writing texture data onto depth buffer
I'm trying to implement the technique described at : Compositing Images with Depth.
The idea is to use an existing texture (loaded from an image) as a depth mask, to basically fake 3D.
The problem ...
3
votes
1answer
1k views
opengl rotation using gldrawpixels
My team is currently limited to drawing images on an opengl 1.4 platform, which means that we can't use any nifty texture mapping to draw an image (yes, we're confined to using the intel integrated ...
1
vote
2answers
44 views
How to scale glDrawPixels?
I need to scale the result of glDrawPixels image.
I'm drawing a 640x480 pixels image buffer with glDrawPixels in a Qt QGLWidget.
I tryed to do the following in PaintGL:
glScalef(windowWidth/640, ...
1
vote
1answer
143 views
Jogl gldrawpixels() problem
I hope that this ends up being a simple question.
I'm using JOGL in Netbeans to create a checkerboard of pixels where you can specify the number of tiles in each row/col, and also the color of each ...
1
vote
1answer
816 views
Copy arbitrarily sized block of pixels into OpenGL ES texture… somehow?
I'm writing a drawing application, and the drawing canvas is an OpenGL texture. When you draw onto the canvas, it determines which region of the canvas texture has been changed, and copies that pixel ...
0
votes
1answer
45 views
OpenGL and GIMP image file exported as .c file
I have drawn an image file with the GIMP and saved it as a .c file.
Then I used the following in my OpenGL code to load the image onto
the screen:
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
...
0
votes
1answer
51 views
glDrawPixels: cannot see program output
I am trying to follow the glDrawPixels example from Chapter 8 of the red book
(which is incomplete) but cannot see anything (I just see a black screen with
no pixmapwhen I run the code. Any ideas what ...
0
votes
2answers
135 views
Using Adobe Alchemy to get the OpenGL image from c++ code to flash app
I have C++ application that use OpenGL. Need to convert this app to flash app. Is it possible to do this with Adobe Alchemy? Is it will be possible to get from that swc current image (for example, ...
0
votes
1answer
310 views
FullScreen picture from webcam
I use openCV to take picture from the cam. Here is code:
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glScalef( 1.0f, 1.0f, -1.0f);
glTranslatef(0,0,FOCAL_LENGTH);
glRasterPos2d(-width/2,height/2);
...
0
votes
4answers
510 views
Equiv of glDrawpixels that operates on GPU memory?
glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const ovid *pixels);
Is there a function like this, except instead of accessing CPU memory, it accesses GPU memory? [Either a ...
0
votes
3answers
1k views
glDrawPixels/glCopyPixels to get a magnified view producing severely clamped image
Despite an earlier question (asked here), our project is constrained to using glDrawPixels, so we have to do some hackery.
One of the feature requirements is to be able to have a magnified view show ...
-1
votes
1answer
223 views
glDrawPixels in opengl or jogl
I have a file in i j r g b format, where i and j are pixel coordinates and r,g,b are colour values ranging from 0-255.
I have scanned them from the file in a single array(in row major order) but my ...