Home | History | Annotate | Download | only in functional

Lines Matching defs:findLSB

962 static int findLSB (deUint32 value)
976 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "findLSB", shaderType)
983 m_spec.source = "lsb = findLSB(value);";
1008 const int minRef = findLSB(value&mask);
1009 const int maxRef = findLSB(value);
1168 addFunctionCases<FindLSBCase> (this, "findlsb", true, true, true, ALL_SHADERS);