Lines Matching refs:matSize

840 	int			matSize		= getDataTypeMatrixNumRows(varType);  in createMatrixSubscriptCase()  local
841 const char* matSizeName = getIntUniformName(matSize); in createMatrixSubscriptCase()
842 DataType vecType = getDataTypeFloatVec(matSize); in createMatrixSubscriptCase()
861 if (matSize >= 2) op << ", ui_one"; in createMatrixSubscriptCase()
862 if (matSize >= 3) op << ", ui_two"; in createMatrixSubscriptCase()
863 if (matSize >= 4) op << ", ui_three"; in createMatrixSubscriptCase()
889 if (matSize >= 2) op << " tmp[1] = ${VEC_TYPE}(coords.yzwx) * 0.5;\n"; in createMatrixSubscriptCase()
890 if (matSize >= 3) op << " tmp[2] = ${VEC_TYPE}(coords.zwxy) * 0.25;\n"; in createMatrixSubscriptCase()
891 if (matSize >= 4) op << " tmp[3] = ${VEC_TYPE}(coords.wxyz) * 0.125;\n"; in createMatrixSubscriptCase()
896 if (matSize >= 2) op << " tmp[ui_one] = ${VEC_TYPE}(coords.yzwx) * 0.5;\n"; in createMatrixSubscriptCase()
897 if (matSize >= 3) op << " tmp[ui_two] = ${VEC_TYPE}(coords.zwxy) * 0.25;\n"; in createMatrixSubscriptCase()
898 if (matSize >= 4) op << " tmp[ui_three] = ${VEC_TYPE}(coords.wxyz) * 0.125;\n"; in createMatrixSubscriptCase()
902 op << " for (int i = 0; i < " << matSize << "; i++)\n"; in createMatrixSubscriptCase()
923 if (matSize >= 2) op << " res += tmp[1];\n"; in createMatrixSubscriptCase()
924 if (matSize >= 3) op << " res += tmp[2];\n"; in createMatrixSubscriptCase()
925 if (matSize >= 4) op << " res += tmp[3];\n"; in createMatrixSubscriptCase()
930 if (matSize >= 2) op << " res += tmp[ui_one];\n"; in createMatrixSubscriptCase()
931 if (matSize >= 3) op << " res += tmp[ui_two];\n"; in createMatrixSubscriptCase()
932 if (matSize >= 4) op << " res += tmp[ui_three];\n"; in createMatrixSubscriptCase()
936 op << " for (int i = 0; i < " << matSize << "; i++)\n"; in createMatrixSubscriptCase()
966 if (matSize == 2) in createMatrixSubscriptCase()
968 else if (matSize == 3) in createMatrixSubscriptCase()