Lines Matching defs:pixelFormat
66 : renderTarget(m_context.getRenderContext().getRenderTarget()), pixelFormat(renderTarget.getPixelFormat())
69 if (pixelFormat.redBits != 0 && pixelFormat.greenBits != 0 && pixelFormat.blueBits != 0 &&
70 pixelFormat.alphaBits != 0)
72 g_color_eps = vec4(1.f / ((float)(1 << deMin32(8, pixelFormat.redBits)) - 1.0f),
73 1.f / ((float)(1 << deMin32(8, pixelFormat.greenBits)) - 1.0f),
74 1.f / ((float)(1 << deMin32(8, pixelFormat.blueBits)) - 1.0f),
75 1.f / ((float)(1 << pixelFormat.alphaBits) - 1.0f)) +
78 else if (pixelFormat.redBits != 0 && pixelFormat.greenBits != 0 && pixelFormat.blueBits != 0)
80 g_color_eps = vec4(1.f / ((float)(1 << pixelFormat.redBits) - 1.0f),
81 1.f / ((float)(1 << pixelFormat.greenBits) - 1.0f),
82 1.f / ((float)(1 << pixelFormat.blueBits) - 1.0f), 1.f) +
92 const tcu::PixelFormat& pixelFormat;
1309 if (!pixelFormat.alphaBits)