OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
100
HDC
deviceCtx
= m_window.getDeviceContext();
106
pixelFormat = wgl::choosePixelFormat(wglCore,
deviceCtx
, config);
111
m_context = new wgl::Context(&wglCore,
deviceCtx
, config.type, pixelFormat);
116
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
152
const HDC
deviceCtx
= nativeDisplay->getDeviceContext();
173
m_bitmap = CreateDIBSection(
deviceCtx
, &bitmapInfo, DIB_RGB_COLORS, &bitmapPtr, NULL, 0);
Completed in 1412 milliseconds