Lines Matching refs:pixel_format
490 int pixel_format = 0; in WIN_GL_ChoosePixelFormatARB() local
510 1, &pixel_format, in WIN_GL_ChoosePixelFormatARB()
521 return pixel_format; in WIN_GL_ChoosePixelFormatARB()
530 int pixel_format = 0; in WIN_GL_SetupWindowInternal() local
621 pixel_format = WIN_GL_ChoosePixelFormatARB(_this, iAttribs, fAttribs); in WIN_GL_SetupWindowInternal()
624 if ( ( !pixel_format ) && ( _this->gl_config.accelerated < 0 ) ) { in WIN_GL_SetupWindowInternal()
626 pixel_format = WIN_GL_ChoosePixelFormatARB(_this, iAttribs, fAttribs); in WIN_GL_SetupWindowInternal()
629 if (!pixel_format) { in WIN_GL_SetupWindowInternal()
630 pixel_format = WIN_GL_ChoosePixelFormat(hdc, &pfd); in WIN_GL_SetupWindowInternal()
632 if (!pixel_format) { in WIN_GL_SetupWindowInternal()
635 if (!SetPixelFormat(hdc, pixel_format, &pfd)) { in WIN_GL_SetupWindowInternal()
880 int pixel_format = GetPixelFormat(hfromdc); in WIN_GL_SetPixelFormatFrom() local
883 DescribePixelFormat(hfromdc, pixel_format, sizeof(pfd), &pfd); in WIN_GL_SetPixelFormatFrom()
886 result = SetPixelFormat(htodc, pixel_format, &pfd); in WIN_GL_SetPixelFormatFrom()