I need to draw pixels very fast on a screen.

I found this interesting page Fast pixel drawing library

author posted: "Using an OpenGL texture along with a PBO seems to be the best choice. Thanks."

I guess OpenGL/PBO is what i need.

I was reading about PBO here http://www.opengl.org/registry/specs/ARB/pixel_buffer_object.txt and here http://www.songho.ca/opengl/gl_pbo.html but i don't get it...

Can someone provide simple example, how to draw pixels on a bitmap on a 2D texture with PBO extension?

link|improve this question
Using a PBO seems like an unnecessary step. Why not render a 2D texture directly? – luke Jun 21 '11 at 16:38
@luke PBO typically DMA to the graphics card they are good if you are doing video. – Martin Beckett Jun 21 '11 at 17:25
@Martin interesting, I didn't know that. – luke Jun 21 '11 at 17:58
feedback

1 Answer

This is probably a good place to start OpenGL Pixel Buffer Object (PBO)

If you need to draw an image then the easiest way is textures, basically a 2D block of memory that you write pixel RGB (or whatever) values into an then ask openGL to draw to the screen. VBOs and PBOs just improve on the process of getting the texture to the screen.

To draw individual 3D points then you need to learn more about OpenGL start here

link|improve this answer
example from this page is a little bit sophisticated, for someone who doesn't know OpenGL. Can you provide simple example, please? (one PBO, one texture, and a function draw_pixel_now(x,y,R,G,B) ) – Stan Jun 21 '11 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.