Home
last modified time | relevance | path

Searched refs:blueSize (Results 1 – 19 of 19) sorted by relevance

/external/deqp/framework/egl/
DegluConfigFilter.hpp54 int blueSize (void) const;
64 …tcu::RGBA colorBits (void) const { return tcu::RGBA(redSize(), greenSize(), blueSize(), alphaSi… in colorBits()
DegluConfigInfo.hpp45 deInt32 blueSize; member in eglu::ConfigInfo
91 , blueSize (0) in ConfigInfo()
DegluConfigInfo.cpp43 case EGL_BLUE_SIZE: return blueSize; in getAttribute()
92 egl.getConfigAttrib(display, config, EGL_BLUE_SIZE, &dst->blueSize); in queryCoreConfigInfo()
DegluConfigFilter.cpp77 int CandidateConfig::blueSize (void) const { return get(EGL_BLUE_SIZE); } in blueSize() function in eglu::CandidateConfig
/external/deqp/modules/egl/
DteglQueryConfigTests.cpp444 const EGLint blueSize = getValue(config, EGL_BLUE_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()
516 const EGLint blueSize = getValue(config, EGL_BLUE_SIZE); in executeTest() local
522 || (blueValue < 0 || blueValue >= (1 << blueSize)) ) in executeTest()
DteglSimpleConfigCase.cpp123 c.blueSize() == Blue && in colorBits()
132 c.blueSize() != Blue || in notColorBits()
DteglRenderCase.cpp376 c.blueSize() == Blue && in colorBits()
385 c.blueSize() != Blue || in notColorBits()
DteglConfigList.cpp91 info.blueSize = val; in iterate()
DteglChooseConfigReference.cpp187 …return (a.m_info.redSize * mask[0] + a.m_info.greenSize * mask[1] + a.m_info.blueSize * mask[2] + … in compareColorBufferBits()
188 …> (b.m_info.redSize * mask[0] + b.m_info.greenSize * mask[1] + b.m_info.blueSize * mask[2] + b.m_i… in compareColorBufferBits()
DteglCreateContextExtTests.cpp1014 c.blueSize() == Blue && in colorBits()
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
DAndroidConfigChooser.java272 public ComponentSizeChooser(int redSize, int greenSize, int blueSize, in ComponentSizeChooser() argument
277 EGL10.EGL_BLUE_SIZE, blueSize, in ComponentSizeChooser()
285 mBlueSize = blueSize; in ComponentSizeChooser()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java371 public void setEGLConfigChooser(int redSize, int greenSize, int blueSize, in setEGLConfigChooser() argument
374 blueSize, alphaSize, depthSize, stencilSize)); in setEGLConfigChooser()
822 public ComponentSizeChooser(int redSize, int greenSize, int blueSize, in ComponentSizeChooser() argument
827 EGL10.EGL_BLUE_SIZE, blueSize, in ComponentSizeChooser()
835 mBlueSize = blueSize; in ComponentSizeChooser()
/external/deqp/executor/
DxeTestCaseResult.hpp355 int blueSize; member in xe::ri::EglConfig
389 , blueSize (0) in EglConfig()
DxeTestLogWriter.cpp385 << Writer::Attribute("BlueSize", de::toString(config.blueSize)) in writeResultItem()
DxeTestResultParser.cpp616 config->blueSize = toInt(getAttribute("BlueSize")); in handleElementStart()
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/surfaceview/
DGLSurfaceViewAPI18.java452 public void setEGLConfigChooser(int redSize, int greenSize, int blueSize, in setEGLConfigChooser() argument
455 blueSize, alphaSize, depthSize, stencilSize)); in setEGLConfigChooser()
922 public ComponentSizeChooser(int redSize, int greenSize, int blueSize, in ComponentSizeChooser() argument
927 EGL10.EGL_BLUE_SIZE, blueSize, in ComponentSizeChooser()
935 mBlueSize = blueSize; in ComponentSizeChooser()
/external/deqp/framework/qphelper/
DqpTestLog.h161 int blueSize; member
DqpTestLog.c1119 attribs[numAttribs++] = qpSetIntAttrib ("BlueSize", config->blueSize); in qpTestLog_writeEglConfig()
/external/deqp/framework/platform/X11/
DtcuX11GlxPlatform.cpp488 int blueSize = visual.getAttrib(GLX_BLUE_SIZE); in configRank() local
492 int minRGB = de::min(redSize, de::min(greenSize, blueSize)); in configRank()