HomeSort by relevance Sort by last modified time
    Searched refs:alphaBits (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/deqp/framework/common/
tcuPixelFormat.hpp 40 int alphaBits;
46 , alphaBits(alpha)
54 , alphaBits(0)
70 (alphaBits > 0) ? (1 << (8 - alphaBits)) : 0);
96 alphaBits ? convertChannel(col.getAlpha(), alphaBits) : 0xff);
104 alphaBits == other.alphaBits;
  /external/deqp/framework/opengl/
gluRenderConfig.hpp 78 int alphaBits;
93 , alphaBits (DONT_CARE)
gluRenderConfig.cpp 38 config->alphaBits == RenderConfig::DONT_CARE &&
49 int alphaBits;
65 config->alphaBits = colorCfgs[ndx].alphaBits;
gluFboRenderContext.cpp 109 if (config.alphaBits != glu::RenderConfig::DONT_CARE &&
110 config.alphaBits != bits[3])
  /external/deqp/framework/platform/win32/
tcuWGL.hpp 112 int alphaBits;
142 , alphaBits (0)
tcuWGL.cpp 342 info.alphaBits = values[9];
481 if (config.alphaBits != glu::RenderConfig::DONT_CARE &&
482 config.alphaBits != info.alphaBits)
tcuWin32EGLNativeDisplayFactory.cpp 197 int alphaBits = 0;
205 egl.getConfigAttrib(display, config, EGL_ALPHA_SIZE, &alphaBits);
208 bitSum = redBits+greenBits+blueBits+alphaBits;
tcuWGLContextFactory.cpp 120 tcu::PixelFormat(info.redBits, info.greenBits, info.blueBits, info.alphaBits),
tcuWin32GLES3Platform.cpp 115 tcu::PixelFormat(info.redBits, info.greenBits, info.blueBits, info.alphaBits),
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.mm 167 const bool ca = config.alphaBits != glu::RenderConfig::DONT_CARE;
172 (!ca || config.alphaBits == 8))
178 (!ca || config.alphaBits == 0))
247 gl.getRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_ALPHA_SIZE, &pixelFormat.alphaBits);
  /external/mesa3d/src/mesa/main/
context.h 73 GLint alphaBits,
89 GLint alphaBits,
  /external/mesa3d/src/glx/
glxconfig.h 42 GLint redBits, greenBits, blueBits, alphaBits; /* bits per comp */
  /external/deqp/modules/gles2/
tes2InfoTests.cpp 109 << tcu::TestLog::Integer("AlphaBits", "Alpha channel bits", "", QP_KEY_TAG_NONE, pf.alphaBits)
  /external/deqp/modules/gles3/
tes3InfoTests.cpp 109 << tcu::TestLog::Integer("AlphaBits", "Alpha channel bits", "", QP_KEY_TAG_NONE, pf.alphaBits)
  /external/deqp/modules/gles31/
tes31InfoTests.cpp 109 << tcu::TestLog::Integer("AlphaBits", "Alpha channel bits", "", QP_KEY_TAG_NONE, pf.alphaBits)
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
glcore.h 81 GLint redBits, greenBits, blueBits, alphaBits; /* bits per comp */
  /external/mesa3d/src/glx/apple/
apple_visual.c 130 attr[numattr++] = mode->alphaBits;
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 618 GLint redBits = 0, greenBits = 0, blueBits = 0, alphaBits =0;
625 alphaBits = CHAN_BITS;
635 alphaBits = CHAN_BITS;
645 alphaBits = CHAN_BITS;
655 alphaBits = 0;
664 alphaBits = 0;
674 alphaBits = 0;
691 alphaBits,
697 alphaBits ? accumBits : 0,
923 /* this updates the visual's red/green/blue/alphaBits fields *
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_renderbuffer.c 242 GLuint rgbBits, GLuint alphaBits,
248 if (rgbBits > 16 || alphaBits > 16) {
405 GLuint blueBits, GLuint alphaBits)
409 if (redBits > 16 || greenBits > 16 || blueBits > 16 || alphaBits > 16) {
500 fb->Visual.alphaBits,
  /external/mesa3d/src/mesa/drivers/dri/common/
utils.c 344 modes->alphaBits = bits[3];
350 + modes->blueBits + modes->alphaBits;
447 __ATTRIB(__DRI_ATTRIB_ALPHA_SIZE, alphaBits),
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_screen.c 166 else if (visual->alphaBits == 0)
  /external/deqp/modules/gles2/functional/
es2fReadPixelsTests.cpp 221 const deUint8 alphaThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (float)(1 << deMin32(m_context.getRenderTarget().getPixelFormat().alphaBits, formatBitDepths.w()))));
244 const float alphaThreshold = 2.0f / (float)(1 << deMin32(m_context.getRenderTarget().getPixelFormat().alphaBits, formatBitDepths.w()));
  /external/deqp/framework/platform/null/
tcuNullRenderContext.cpp 731 const int alphaBits = getValueOrDefault(renderCfg, &RenderConfig::alphaBits, 8);
736 return tcu::RenderTarget(width, height, tcu::PixelFormat(redBits, greenBits, blueBits, alphaBits), depthBits, stencilBits, numSamples);
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 262 (format.alphaBits ? tcu::RGBA::ALPHA_MASK : 0));
267 return tcu::IVec4(format.redBits, format.greenBits, format.blueBits, format.alphaBits);
275 format.alphaBits > 0);
  /external/deqp/framework/egl/
egluGLUtil.cpp 203 { &glu::RenderConfig::alphaBits, EGL_ALPHA_SIZE },

Completed in 300 milliseconds

1 2 3 4