Discard software pixel formats.

This commit is contained in:
Camilla Berglund 2011-02-08 19:50:06 +01:00
parent 08d758ed42
commit ed31f1a670
1 changed files with 7 additions and 0 deletions

View File

@ -216,6 +216,13 @@ static _GLFWfbconfig* getFBConfigs(_GLFWwindow* window, unsigned int* found)
continue;
}
// Only consider "hardware-accelerated" pixel formats
if (getPixelFormatAttrib(window, i, WGL_ACCELERATION_ARB) ==
WGL_NO_ACCELERATION_ARB)
{
continue;
}
result[*found].redBits =
getPixelFormatAttrib(window, i, WGL_RED_BITS_ARB);
result[*found].greenBits =