OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:formatThreshold
(Results
1 - 5
of
5
) sorted by null
/external/deqp/modules/gles2/functional/
es2fPolygonOffsetTests.cpp
98
const tcu::RGBA
formatThreshold
= renderCtx.getRenderTarget().getPixelFormat().getColorThreshold();
99
const tcu::IVec4 threshold = tcu::IVec4(colorThreshold, colorThreshold, colorThreshold,
formatThreshold
.getAlpha() > 0 ? colorThreshold : 0)
100
+ tcu::IVec4(
formatThreshold
.getRed(),
formatThreshold
.getGreen(),
formatThreshold
.getBlue(),
formatThreshold
.getAlpha());
[
all
...]
/external/deqp/modules/gles3/functional/
es3fPolygonOffsetTests.cpp
101
const tcu::RGBA
formatThreshold
= renderCtx.getRenderTarget().getPixelFormat().getColorThreshold();
102
const tcu::IVec4 threshold = tcu::IVec4(colorThreshold, colorThreshold, colorThreshold,
formatThreshold
.getAlpha() > 0 ? colorThreshold : 0)
103
+ tcu::IVec4(
formatThreshold
.getRed(),
formatThreshold
.getGreen(),
formatThreshold
.getBlue(),
formatThreshold
.getAlpha());
[
all
...]
es3fFragmentOutputTests.cpp
897
UVec4
formatThreshold
; //!< Threshold computed based on format.
903
case tcu::TextureFormat::FLOAT:
formatThreshold
= UVec4(0); break;
904
case tcu::TextureFormat::HALF_FLOAT:
formatThreshold
= UVec4((1<<(23-10))); break;
905
case tcu::TextureFormat::UNSIGNED_INT_11F_11F_10F_REV:
formatThreshold
= UVec4((1<<(23-6)), (1<<(23-6)), (1<<(23-5)), 0); break;
921
finalThreshold = select(max(
formatThreshold
, UVec4(deMax32(interpThreshold, outTypeThreshold))), UVec4(~0u), cmpMask);
[
all
...]
/external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.cpp
246
const tcu::RGBA
formatThreshold
= m_context.getRenderTarget().getPixelFormat().getColorThreshold();
323
if (colorDiff.x() >
formatThreshold
.getRed() + colorThreshold ||
324
colorDiff.y() >
formatThreshold
.getGreen() + colorThreshold ||
325
colorDiff.z() >
formatThreshold
.getBlue() + colorThreshold)
[
all
...]
/external/deqp/modules/gles3/stress/
es3sSpecialFloatTests.cpp
254
const tcu::RGBA
formatThreshold
= m_context.getRenderTarget().getPixelFormat().getColorThreshold();
331
if (colorDiff.x() >
formatThreshold
.getRed() + colorThreshold ||
332
colorDiff.y() >
formatThreshold
.getGreen() + colorThreshold ||
333
colorDiff.z() >
formatThreshold
.getBlue() + colorThreshold)
[
all
...]
Completed in 832 milliseconds