Lines Matching defs:pixelFormat
69 : renderTarget(m_context.getRenderContext().getRenderTarget()), pixelFormat(renderTarget.getPixelFormat())
72 if (pixelFormat.redBits != 0)
74 g_color_eps.x() += 1.f / (static_cast<float>(1 << pixelFormat.redBits) - 1.0f);
76 if (pixelFormat.greenBits != 0)
78 g_color_eps.y() += 1.f / (static_cast<float>(1 << pixelFormat.greenBits) - 1.0f);
80 if (pixelFormat.blueBits != 0)
82 g_color_eps.z() += 1.f / (static_cast<float>(1 << pixelFormat.blueBits) - 1.0f);
84 if (pixelFormat.alphaBits != 0)
86 g_color_eps.w() += 1.f / (static_cast<float>(1 << pixelFormat.alphaBits) - 1.0f);
91 const tcu::PixelFormat& pixelFormat;