Searched refs:getPixelFormatAttrib (Results 1 – 1 of 1) sorted by relevance
/third_party/flutter/glfw/src/ |
D | wgl_context.c | 38 static int getPixelFormatAttrib(_GLFWwindow* window, int pixelFormat, int attrib) in getPixelFormatAttrib() function 67 nativeCount = getPixelFormatAttrib(window, in choosePixelFormat() 91 if (!getPixelFormatAttrib(window, n, WGL_SUPPORT_OPENGL_ARB) || in choosePixelFormat() 92 !getPixelFormatAttrib(window, n, WGL_DRAW_TO_WINDOW_ARB)) in choosePixelFormat() 97 if (getPixelFormatAttrib(window, n, WGL_PIXEL_TYPE_ARB) != in choosePixelFormat() 103 if (getPixelFormatAttrib(window, n, WGL_ACCELERATION_ARB) == in choosePixelFormat() 109 u->redBits = getPixelFormatAttrib(window, n, WGL_RED_BITS_ARB); in choosePixelFormat() 110 u->greenBits = getPixelFormatAttrib(window, n, WGL_GREEN_BITS_ARB); in choosePixelFormat() 111 u->blueBits = getPixelFormatAttrib(window, n, WGL_BLUE_BITS_ARB); in choosePixelFormat() 112 u->alphaBits = getPixelFormatAttrib(window, n, WGL_ALPHA_BITS_ARB); in choosePixelFormat() [all …]
|