Home
last modified time | relevance | path

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

/external/deqp/framework/platform/win32/
DtcuWGL.cpp289 std::vector<int> Core::getPixelFormats (HDC deviceCtx) const in getPixelFormats()
296 …if (!wgl.getPixelFormatAttribivARB(deviceCtx, 0, 0, DE_LENGTH_OF_ARRAY(attribs), &attribs[0], &val… in getPixelFormats()
329 static void getPixelFormatAttribs (const Functions& wgl, HDC deviceCtx, int pixelFormat, int numAtt… in getPixelFormatAttribs() argument
333 if (!wgl.getPixelFormatAttribivARB(deviceCtx, pixelFormat, 0, numAttribs, &attribs[0], &values[0])) in getPixelFormatAttribs()
340 PixelFormatInfo Core::getPixelFormatInfo (HDC deviceCtx, int pixelFormat) const in getPixelFormatInfo() argument
369 …getPixelFormatAttribs(wgl, deviceCtx, pixelFormat, DE_LENGTH_OF_ARRAY(s_attribsToQuery), &s_attrib… in getPixelFormatInfo()
403 HDC deviceCtx, in Context() argument
409 , m_deviceCtx (deviceCtx) in Context()
503 if (!DescribePixelFormat(deviceCtx, pixelFormat, sizeof(pixelFormatDesc), &pixelFormatDesc)) in Context()
506 if (!SetPixelFormat(deviceCtx, pixelFormat, &pixelFormatDesc)) in Context()
[all …]
DtcuWGL.hpp172 std::vector<int> getPixelFormats (HDC deviceCtx) const;
173 PixelFormatInfo getPixelFormatInfo (HDC deviceCtx, int pixelFormat) const;
199 HDC deviceCtx,
224 int choosePixelFormat (const Core& wgl, HDC deviceCtx, const glu::RenderConfig& config);
DtcuWGLContextFactory.cpp104 HDC deviceCtx = m_window.getDeviceContext(); in WGLContext() local
110 pixelFormat = wgl::choosePixelFormat(wglCore, deviceCtx, config); in WGLContext()
119 …m_context = new wgl::Context(&wglCore, deviceCtx, sharedCtx, config.type, pixelFormat, config.rese… in WGLContext()
124 const wgl::PixelFormatInfo info = wglCore.getPixelFormatInfo(deviceCtx, pixelFormat); in WGLContext()
DtcuWin32EGLNativeDisplayFactory.cpp152 const HDC deviceCtx = nativeDisplay->getDeviceContext(); in NativePixmap() local
173 m_bitmap = CreateDIBSection(deviceCtx, &bitmapInfo, DIB_RGB_COLORS, &bitmapPtr, NULL, 0); in NativePixmap()