Searched defs:deviceCtx (Results 1 - 4 of 4) sorted by relevance

/external/deqp/framework/platform/win32/
H A DtcuWGLContextFactory.cpp98 HDC deviceCtx = m_window.getDeviceContext(); local
104 pixelFormat = wgl::choosePixelFormat(wglCore, deviceCtx, config);
109 m_context = new wgl::Context(&wglCore, deviceCtx, config.type, pixelFormat);
114 const wgl::PixelFormatInfo info = wglCore.getPixelFormatInfo(deviceCtx, pixelFormat);
H A DtcuWin32GLES3Platform.cpp91 const HDC deviceCtx = m_window.getDeviceContext(); local
92 const int pixelFormat = wgl::choosePixelFormat(wgl, deviceCtx, config);
111 const wgl::PixelFormatInfo info = wgl.getPixelFormatInfo(deviceCtx, pixelFormat);
H A DtcuWin32EGLNativeDisplayFactory.cpp138 const HDC deviceCtx = nativeDisplay->getDeviceContext(); local
159 m_bitmap = CreateDIBSection(deviceCtx, &bitmapInfo, DIB_RGB_COLORS, &bitmapPtr, NULL, 0);
H A DtcuWGL.cpp263 std::vector<int> Core::getPixelFormats (HDC deviceCtx) const
270 if (!wgl.getPixelFormatAttribivARB(deviceCtx, 0, 0, DE_LENGTH_OF_ARRAY(attribs), &attribs[0], &values[0]))
304 PixelFormatInfo Core::getPixelFormatInfo (HDC deviceCtx, int pixelFormat) const argument
326 if (!wgl.getPixelFormatAttribivARB(deviceCtx, pixelFormat, 0, DE_LENGTH_OF_ARRAY(attribs), &attribs[0], &values[0]))
353 Context::Context (const Core* core, HDC deviceCtx, glu::ContextType ctxType, int pixelFormat) argument
355 , m_deviceCtx (deviceCtx)
405 if (!DescribePixelFormat(deviceCtx, pixelFormat, sizeof(pixelFormatDesc), &pixelFormatDesc))
408 if (!SetPixelFormat(deviceCtx, pixelFormat, &pixelFormatDesc))
413 m_context = wgl.createContextAttribsARB(deviceCtx, NULL, attribList);
418 if (!wgl.makeCurrent(deviceCtx, m_contex
454 choosePixelFormat(const Core& wgl, HDC deviceCtx, const glu::RenderConfig& config) argument
[all...]

Completed in 305 milliseconds