Lines Matching refs:decl
782 ostringstream decl;
793 decl << vtxIn << " highp vec4 dEQP_Position;\n";
806 decl << vtxIn << " " << floatTypeStr << " " << valueName << ";\n";
810 decl << vtxIn << " " << floatTypeStr << " a_" << valueName << ";\n";
817 decl << vtxOut << " " << floatTypeStr << " " << valueName << ";\n";
820 decl << vtxOut << " " << floatTypeStr << " v_" << valueName << ";\n";
821 decl << refTypeStr << " " << valueName << ";\n";
830 params.insert(pair<string, string>("DECLARATIONS", decl.str()));
842 ostringstream decl;
851 genCompareFunctions(decl, valueBlock, false);
855 decl << "layout(location = 0) out mediump vec4 dEQP_FragColor;\n";
868 decl << fragIn << " " << floatTypeStr << " " << valueName << ";\n";
871 decl << fragIn << " " << floatTypeStr << " v_" << valueName << ";\n";
882 decl << "uniform " << refTypeStr << " ref_" << valueName << ";\n";
883 decl << refTypeStr << " " << valueName << ";\n";
891 params.insert(pair<string, string>("DECLARATIONS", decl.str()));
908 ostringstream decl;
912 decl << vtxIn << " highp vec4 dEQP_Position;\n";
923 decl << vtxIn << " " << typeStr << " " << val.valueName << ";\n";
930 decl << vtxIn << " " << floatTypeStr << " a_" << val.valueName << ";\n";
936 decl << "uniform " << typeStr << " " << val.valueName << ";\n";
941 params.insert(pair<string, string>("VERTEX_DECLARATIONS", decl.str()));
950 ostringstream decl;
954 genCompareFunctions(decl, valueBlock, false);
958 decl << "layout(location = 0) out mediump vec4 dEQP_FragColor;\n";
968 decl << "uniform " << refTypeStr << " ref_" << valueName << ";\n";
969 decl << refTypeStr << " " << valueName << ";\n";
973 decl << "uniform " << refTypeStr << " " << valueName << ";\n";
978 params.insert(pair<string, string>("FRAGMENT_DECLARATIONS", decl.str()));