Home | History | Annotate | Download | only in functional

Lines Matching full:ivec3

2710 	static tcu::IVec3					getTargetDimensions			(LayeredRenderTargetType target);
2922 const tcu::IVec3 texSize = getTargetDimensions(m_target);
3345 " fragColor = texelFetch(u_sampler, ivec3(screenpos, u_layer), 0);\n";
3362 const tcu::IVec3 texSize = getTargetDimensions(m_target);
3531 const bool isColor = tcu::allEqual(tcu::lessThan(tcu::abs(color.toIVec().swizzle(0, 1, 2) - refColor.toIVec().swizzle(0, 1, 2)), tcu::IVec3(threshold, threshold, threshold)), tcu::BVec3(true, true, true));
3666 tcu::IVec3 LayeredRenderCase::getTargetDimensions (LayeredRenderTargetType target)
3670 case TARGET_CUBE: return tcu::IVec3(64, 64, 0);
3671 case TARGET_3D: return tcu::IVec3(64, 64, 4);
3672 case TARGET_1D_ARRAY: return tcu::IVec3(64, 4, 0);
3673 case TARGET_2D_ARRAY: return tcu::IVec3(64, 64, 4);
3674 case TARGET_2D_MS_ARRAY: return tcu::IVec3(64, 64, 2);
3677 return tcu::IVec3(0, 0, 0);