• Home
  • Raw
  • Download

Lines Matching refs:getPixelFormatAttrib

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()
114 u->depthBits = getPixelFormatAttrib(window, n, WGL_DEPTH_BITS_ARB); in choosePixelFormat()
115 u->stencilBits = getPixelFormatAttrib(window, n, WGL_STENCIL_BITS_ARB); in choosePixelFormat()
117 u->accumRedBits = getPixelFormatAttrib(window, n, WGL_ACCUM_RED_BITS_ARB); in choosePixelFormat()
118 u->accumGreenBits = getPixelFormatAttrib(window, n, WGL_ACCUM_GREEN_BITS_ARB); in choosePixelFormat()
119 u->accumBlueBits = getPixelFormatAttrib(window, n, WGL_ACCUM_BLUE_BITS_ARB); in choosePixelFormat()
120 u->accumAlphaBits = getPixelFormatAttrib(window, n, WGL_ACCUM_ALPHA_BITS_ARB); in choosePixelFormat()
122 u->auxBuffers = getPixelFormatAttrib(window, n, WGL_AUX_BUFFERS_ARB); in choosePixelFormat()
124 if (getPixelFormatAttrib(window, n, WGL_STEREO_ARB)) in choosePixelFormat()
126 if (getPixelFormatAttrib(window, n, WGL_DOUBLE_BUFFER_ARB)) in choosePixelFormat()
130 u->samples = getPixelFormatAttrib(window, n, WGL_SAMPLES_ARB); in choosePixelFormat()
135 if (getPixelFormatAttrib(window, n, WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB)) in choosePixelFormat()