Home
last modified time | relevance | path

Searched refs:deviceCtx (Results 1 – 5 of 5) sorted by relevance

/external/deqp/framework/platform/win32/
DtcuWGL.cpp263 std::vector<int> Core::getPixelFormats (HDC deviceCtx) const in getPixelFormats()
270 …if (!wgl.getPixelFormatAttribivARB(deviceCtx, 0, 0, DE_LENGTH_OF_ARRAY(attribs), &attribs[0], &val… in getPixelFormats()
304 PixelFormatInfo Core::getPixelFormatInfo (HDC deviceCtx, int pixelFormat) const in getPixelFormatInfo() argument
326 …if (!wgl.getPixelFormatAttribivARB(deviceCtx, pixelFormat, 0, DE_LENGTH_OF_ARRAY(attribs), &attrib… in getPixelFormatInfo()
353 Context::Context (const Core* core, HDC deviceCtx, glu::ContextType ctxType, int pixelFormat) in Context() argument
355 , m_deviceCtx (deviceCtx) in Context()
405 if (!DescribePixelFormat(deviceCtx, pixelFormat, sizeof(pixelFormatDesc), &pixelFormatDesc)) in Context()
408 if (!SetPixelFormat(deviceCtx, pixelFormat, &pixelFormatDesc)) in Context()
413 m_context = wgl.createContextAttribsARB(deviceCtx, NULL, attribList); in Context()
418 if (!wgl.makeCurrent(deviceCtx, m_context)) in Context()
[all …]
DtcuWGL.hpp164 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);
DtcuWGLContextFactory.cpp100 HDC deviceCtx = m_window.getDeviceContext(); in WGLContext() local
106 pixelFormat = wgl::choosePixelFormat(wglCore, deviceCtx, config); in WGLContext()
111 m_context = new wgl::Context(&wglCore, deviceCtx, config.type, pixelFormat); in WGLContext()
116 const wgl::PixelFormatInfo info = wglCore.getPixelFormatInfo(deviceCtx, pixelFormat); in WGLContext()
DtcuWin32GLES3Platform.cpp91 const HDC deviceCtx = m_window.getDeviceContext(); in Win32GLES3Context() local
92 const int pixelFormat = wgl::choosePixelFormat(wgl, deviceCtx, config); in Win32GLES3Context()
111 const wgl::PixelFormatInfo info = wgl.getPixelFormatInfo(deviceCtx, pixelFormat); in Win32GLES3Context()
DtcuWin32EGLNativeDisplayFactory.cpp152 const HDC deviceCtx = nativeDisplay->getDeviceContext(); in NativePixmap() local
173 m_bitmap = CreateDIBSection(deviceCtx, &bitmapInfo, DIB_RGB_COLORS, &bitmapPtr, NULL, 0); in NativePixmap()