Lines Matching defs:maxValues
1997 UVec4 maxValues = getFormatMaxUintValue(tcuFormat);
1999 clearValue.color.uint32[0] = (deUint32)((float)maxValues[0] * r);
2000 clearValue.color.uint32[1] = (deUint32)((float)maxValues[1] * g);
2001 clearValue.color.uint32[2] = (deUint32)((float)maxValues[2] * b);
2002 clearValue.color.uint32[3] = (deUint32)((float)maxValues[3] * a);
2006 IVec4 maxValues = getFormatMaxIntValue(tcuFormat);
2008 clearValue.color.int32[0] = (deUint32)((float)maxValues[0] * r);
2009 clearValue.color.int32[1] = (deUint32)((float)maxValues[1] * g);
2010 clearValue.color.int32[2] = (deUint32)((float)maxValues[2] * b);
2011 clearValue.color.int32[3] = (deUint32)((float)maxValues[3] * a);