Search Results

6
votes

What is the formula for alpha blending for a number of pixels?

Alpha-blending is one of those topics that has more depth than you might think. It depends on what the alpha value means in your system, and if you guess wrong, then you'll end up with results tha …
1
vote

What could prevent OpenGL glDrawPixels from working on some video cards?

The default raster position should be (0,0,0,1), but you can reset it to make sure. Just before calling glDrawPixels(), try GLint valid; glGet(GL_CURRENT_RASTER_POSITION_VA …