Questions specific to running games on Intel hardware (integrated graphics chips, processors, etc).

learn more… | top users | synonyms

6
votes
1answer
596 views

Using glReadBuffer/glReadPixels returns black image instead of the actual image only on Intel cards

I have this piece of code glReadBuffer( GL_FRONT ); glReadPixels( 0, 0, width, height, GL_RGB, GL_UNSIGNED_BYTE, buffer ); Which works just perfectly in all the Nvidia and AMD GPUs I have tried, ...
0
votes
1answer
185 views

Get video chipset manufacturer in Direct3D

I'd need to know if the video chipset Direct3D runs on is from Nvidia, AMD or Intel. Is there a way to do that?