Home
last modified time | relevance | path

Searched refs:redSize (Results 1 – 17 of 17) sorted by relevance

/external/deqp/framework/egl/
DegluConfigFilter.hpp52 int redSize (void) const;
63 …tcu::RGBA colorBits (void) const { return tcu::RGBA(redSize(), greenSize(), blueSize(), alphaSi… in colorBits()
DegluConfigInfo.hpp41 deInt32 redSize; member in eglu::ConfigInfo
74 , redSize (0) in ConfigInfo()
DegluConfigInfo.cpp39 case EGL_RED_SIZE: return redSize; in getAttribute()
76 egl.getConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize); in queryConfigInfo()
DegluConfigFilter.cpp62 int CandidateConfig::redSize (void) const { return get(EGL_RED_SIZE); } in redSize() function in eglu::CandidateConfig
/external/deqp/modules/egl/
DteglQueryConfigTests.cpp442 const EGLint redSize = getValue(config, EGL_RED_SIZE); in executeTest() local
462 if (redSize <= 0 || greenSize <= 0 || blueSize <= 0) in executeTest()
468 if (bufferSize != (redSize + greenSize + blueSize + alphaSize)) in executeTest()
482 if (redSize != 0 || greenSize != 0 || blueSize != 0) in executeTest()
514 const EGLint redSize = getValue(config, EGL_RED_SIZE); in executeTest() local
520 if ( (redValue < 0 || redValue >= (1 << redSize)) in executeTest()
DteglSimpleConfigCase.cpp121 return c.redSize() == Red && in colorBits()
130 return c.redSize() != Red || in notColorBits()
DteglRenderCase.cpp374 return c.redSize() == Red && in colorBits()
383 return c.redSize() != Red || in notColorBits()
DteglChooseConfigReference.cpp135 …return (a.m_info.redSize * mask[0] + a.m_info.greenSize * mask[1] + a.m_info.blueSize * mask[2] + … in compareColorBufferBits()
136 …> (b.m_info.redSize * mask[0] + b.m_info.greenSize * mask[1] + b.m_info.blueSize * mask[2] + b.m_i… in compareColorBufferBits()
DteglConfigList.cpp85 info.redSize = val; in iterate()
DteglCreateContextExtTests.cpp1012 return c.redSize() == Red && in colorBits()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java371 public void setEGLConfigChooser(int redSize, int greenSize, int blueSize, in setEGLConfigChooser() argument
373 setEGLConfigChooser(new ComponentSizeChooser(redSize, greenSize, in setEGLConfigChooser()
822 public ComponentSizeChooser(int redSize, int greenSize, int blueSize, in ComponentSizeChooser() argument
825 EGL10.EGL_RED_SIZE, redSize, in ComponentSizeChooser()
833 mRedSize = redSize; in ComponentSizeChooser()
/external/deqp/executor/
DxeTestCaseResult.hpp353 int redSize; member in xe::ri::EglConfig
387 , redSize (0) in EglConfig()
DxeTestLogWriter.cpp383 << Writer::Attribute("RedSize", de::toString(config.redSize)) in writeResultItem()
DxeTestResultParser.cpp614 config->redSize = toInt(getAttribute("RedSize")); in handleElementStart()
/external/deqp/framework/qphelper/
DqpTestLog.h159 int redSize; member
DqpTestLog.c1117 attribs[numAttribs++] = qpSetIntAttrib ("RedSize", config->redSize); in qpTestLog_writeEglConfig()
/external/deqp/framework/platform/X11/
DtcuX11GlxPlatform.cpp486 int redSize = visual.getAttrib(GLX_RED_SIZE); in configRank() local
492 int minRGB = de::min(redSize, de::min(greenSize, blueSize)); in configRank()