HomeSort by relevance Sort by last modified time
    Searched refs:deviceCtx (Results 1 - 5 of 5) sorted by null

  /external/deqp/framework/platform/win32/
tcuWGL.hpp 164 std::vector<int> getPixelFormats (HDC deviceCtx) const;
165 PixelFormatInfo getPixelFormatInfo (HDC deviceCtx, int pixelFormat) const;
190 Context (const Core* core, HDC deviceCtx, glu::ContextType ctxType, int pixelFormat);
210 int choosePixelFormat (const Core& wgl, HDC deviceCtx, const glu::RenderConfig& config);
tcuWGL.cpp 263 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
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)
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_context)
    [all...]
tcuWGLContextFactory.cpp 98 HDC deviceCtx = m_window.getDeviceContext();
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);
tcuWin32GLES3Platform.cpp 91 const HDC deviceCtx = m_window.getDeviceContext();
92 const int pixelFormat = wgl::choosePixelFormat(wgl, deviceCtx, config);
111 const wgl::PixelFormatInfo info = wgl.getPixelFormatInfo(deviceCtx, pixelFormat);
tcuWin32EGLNativeDisplayFactory.cpp 138 const HDC deviceCtx = nativeDisplay->getDeviceContext();
159 m_bitmap = CreateDIBSection(deviceCtx, &bitmapInfo, DIB_RGB_COLORS, &bitmapPtr, NULL, 0);

Completed in 3731 milliseconds