Lines Matching defs:params
249 void addVS(SourceCollections& programCollection, const std::map<std::string, std::string>& params) const;
250 void addFS(SourceCollections& programCollection, const std::map<std::string, std::string>& params) const;
251 void addCS(SourceCollections& programCollection, const std::map<std::string, std::string>& params) const;
317 const std::map<std::string, std::string>& params) const
339 programCollection.glslSources.add("vert") << glu::VertexSource(vertShaderTpl.specialize(params));
774 const std::map<std::string, std::string>& params) const
804 programCollection.glslSources.add("frag") << glu::FragmentSource(fragShaderTpl.specialize(params));
809 const std::map<std::string, std::string>& params) const
877 programCollection.glslSources.add("comp") << glu::ComputeSource(computeShaderTpl.specialize(params));
882 std::map<std::string, std::string> params;
890 params["VERTEX_COUNT_PER_PATCH"] = std::to_string(getVertexCountPerPatch(&m_testParam));
891 params["PATCH_COUNT_PER_DRAW"] = std::to_string(patchCountPerDraw);
892 params["INV_TOTAL_PATCH_COUNT"] = std::to_string(1.0f / static_cast<float>(drawCount * patchCountPerDraw));
893 params["TOTAL_PATCH_COUNT"] = std::to_string(drawCount * patchCountPerDraw);
894 params["ATTACHMENT_COUNT"] = std::to_string(attachmentCount);
917 params["OUTPUT_VECTOR_NAME"] = strVecName + std::to_string(tcu::getNumUsedChannels(colorFormat.order));
918 params["OUTPUT_BASIC_TYPE"] = strBasicType;
919 params["TILE_IMAGE_TYPE"] = strTileImageType;
921 addVS(programCollection, params);
922 addFS(programCollection, params);
923 addCS(programCollection, params);