/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Config_unittest.cpp | 20 config.redSize = 8; in GenerateGenericConfig() 126 {EGL_RED_SIZE, &egl::Config::redSize}, {EGL_GREEN_SIZE, &egl::Config::greenSize}, in TEST() 186 config.redSize = (i * 2) % 3; in TEST() 205 prevConfig.redSize + prevConfig.greenSize + prevConfig.blueSize + prevConfig.alphaSize; in TEST() 209 curConfig.redSize + curConfig.greenSize + curConfig.blueSize + curConfig.alphaSize; in TEST()
|
H A D | Config.cpp | 29 redSize(0), in Config() 209 total += config.redSize; 264 match = config.redSize >= attributeValue;
|
H A D | Config.h | 38 EGLint redSize; // Bits of Red in the color buffer member
|
H A D | formatutils.h | 187 ANGLE_INLINE bool isChannelSizeCompatible(GLuint redSize, in isChannelSizeCompatible() 193 return ((redSize == redBits) && (greenSize == greenBits) && (blueSize == blueBits) && in isChannelSizeCompatible()
|
H A D | validationEGL.cpp | 1185 bool colorCompat = surfaceConfig->redSize == contextConfig->redSize && in ValidateCompatibleSurface() 5804 int redSize = attribMap.getAsInt(EGL_RED_SIZE, 0); in ValidateCreateNativeClientBufferANDROID() local 5824 if (redSize < 0 || greenSize < 0 || blueSize < 0 || alphaSize < 0) in ValidateCreateNativeClientBufferANDROID()
|
/third_party/vk-gl-cts/framework/egl/ |
H A D | egluConfigFilter.hpp | 52 int redSize (void) const; 64 tcu::RGBA colorBits (void) const { return tcu::RGBA(redSize(), greenSize(), blueSize(), alphaSize()); } in colorBits()
|
H A D | egluConfigInfo.hpp | 43 deInt32 redSize; member in eglu::ConfigInfo 92 , redSize (0) in ConfigInfo()
|
H A D | egluConfigInfo.cpp | 41 case EGL_RED_SIZE: return redSize; in getAttribute() 93 egl.getConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize); in queryCoreConfigInfo()
|
H A D | egluConfigFilter.cpp | 75 int CandidateConfig::redSize (void) const { return get(EGL_RED_SIZE); } in redSize() function in eglu::CandidateConfig
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglQueryConfigTests.cpp | 461 const EGLint redSize = getValue(config, EGL_RED_SIZE); in executeTest() local 481 if (redSize <= 0 || greenSize <= 0 || blueSize <= 0) in executeTest() 487 if (bufferSize != (redSize + greenSize + blueSize + alphaSize)) in executeTest() 501 if (redSize != 0 || greenSize != 0 || blueSize != 0) in executeTest() 533 const EGLint redSize = getValue(config, EGL_RED_SIZE); in executeTest() local 539 if ( (redValue < 0 || redValue >= (1 << redSize)) in executeTest()
|
H A D | teglSimpleConfigCase.cpp | 121 return c.redSize() == Red && in colorBits() 130 return c.redSize() != Red || in notColorBits()
|
H A D | teglRenderCase.cpp | 380 return c.redSize() == Red && in colorBits() 389 return c.redSize() != Red || in notColorBits()
|
H A D | teglConfigList.cpp | 85 info.redSize = val; in iterate()
|
H A D | teglChooseConfigReference.cpp | 187 return (a.m_info.redSize * mask[0] + a.m_info.greenSize * mask[1] + a.m_info.blueSize * mask[2] + a.m_info.alphaSize * mask[3]) in compareColorBufferBits() 188 > (b.m_info.redSize * mask[0] + b.m_info.greenSize * mask[1] + b.m_info.blueSize * mask[2] + b.m_info.alphaSize * mask[3]); in compareColorBufferBits()
|
H A D | teglCreateContextExtTests.cpp | 1016 return c.redSize() == Red && in colorBits()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcConfigListEGL.cpp | 107 deInt32 redSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_RED_SIZE); in getDefaultEglConfigList() local 135 configList.aospConfigs.push_back(AOSPConfig(CONFIGTYPE_EGL, id, surfaceTypes, redSize, greenSize, blueSize, in getDefaultEglConfigList()
|
/third_party/vk-gl-cts/executor/ |
H A D | xeTestCaseResult.hpp | 363 int redSize; member in xe::ri::EglConfig 397 , redSize (0) in EglConfig()
|
H A D | xeTestLogWriter.cpp | 390 << Writer::Attribute("RedSize", de::toString(config.redSize)) in writeResultItem()
|
H A D | xeTestResultParser.cpp | 632 config->redSize = toInt(getAttribute("RedSize")); in handleElementStart()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/ |
H A D | DisplayGLX.cpp | 620 config.redSize = getGLXFBConfigAttrib(glxConfig, GLX_RED_SIZE); in generateConfigs() 628 if (config.redSize != contextRedSize || config.greenSize != contextGreenSize || in generateConfigs() 649 config.bufferSize = config.redSize + config.greenSize + config.blueSize + config.alphaSize; in generateConfigs()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/ |
H A D | DisplayNULL.cpp | 58 config.redSize = 8; in generateConfigs()
|
/third_party/vk-gl-cts/framework/qphelper/ |
H A D | qpTestLog.h | 171 int redSize; member
|
/third_party/vk-gl-cts/framework/platform/lnx/X11/ |
H A D | tcuLnxX11GlxPlatform.cpp | 571 int redSize = visual.getAttrib(GLX_RED_SIZE); in configRank() local 577 int minRGB = de::min(redSize, de::min(greenSize, blueSize)); in configRank()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/ |
H A D | DisplayEGL.cpp | 611 getConfigAttrib(configs[i], EGL_RED_SIZE, &config.redSize); in generateConfigs() 653 ERR() << "RGBA(" << config.redSize << "," << config.greenSize << "," in generateConfigs()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/ |
H A D | DisplayWGL.cpp | 508 config.redSize = pixelFormatDescriptor.cRedBits; in generateConfigs()
|