Lines Matching defs:templateArgs
182 map<string, string> templateArgs;
188 templateArgs.insert(pair<string, string>("VERSION_DECL", versionDecl));
189 templateArgs.insert(pair<string, string>("TESS_EXTENSION", tessExtension));
196 string shaderSource(shaderTemplate.specialize(templateArgs));
208 string shaderSource(shaderTemplate.specialize(templateArgs));
220 string shaderSource(shaderTemplate.specialize(templateArgs));
232 string shaderSource(shaderTemplate.specialize(templateArgs));
244 string shaderSource(shaderTemplate.specialize(templateArgs));
309 map<string, string> templateArgs;
313 templateArgs.insert(pair<string, string>("LOCAL_SIZE_X", localSize.str()));
318 templateArgs.insert(pair<string, string>("LOCAL_SIZE_Y", localSize.str()));
323 templateArgs.insert(pair<string, string>("LOCAL_SIZE_Z", localSize.str()));
326 templateArgs.insert(pair<string, string>("VERSION_DECL", versionDecl));
328 glu::ComputeSource cshader(glu::ComputeSource(computeTemplate.specialize(templateArgs)));