Every frame, my program will receive a new image from a USB video camera. This image will initially be in CPU memory. What's the fastest method in OpenGL to draw this image to the screen so that it fills the entire screen?
Currently, I'm uploading the image data to a texture and then rendering a fullscreen quad. However, this doesn't run very quickly on a different machine that I tried.