Home
last modified time | relevance | path

Searched refs:getProgramName (Results 1 – 8 of 8) sorted by relevance

/external/deqp/modules/gles31/functional/
Des31fSeparateShaderTests.cpp603 virtual GLuint getProgramName (void) = 0;
615 GLuint getProgramName (void) { return m_shaderProgram.getProgram(); } in getProgramName() function in deqp::gles31::Functional::__anonea5f3de90111::ShaderProgramWrapper
635 GLuint getProgramName (void) { return m_program.getProgram(); } in getProgramName() function in deqp::gles31::Functional::__anonea5f3de90111::RawProgramWrapper
1171 const GLuint progName = program.getProgramName(); in setUniform()
1222 fullProg->getProgramName()); in createPipeline()
1225 << " with two-shader program " << fullProg->getProgramName() in createPipeline()
1233 pipeline->useProgramStages(GL_VERTEX_SHADER_BIT, vtxProg->getProgramName()); in createPipeline()
1236 pipeline->useProgramStages(GL_FRAGMENT_SHADER_BIT, frgProg->getProgramName()); in createPipeline()
1240 << " with vertex program " << vtxProg->getProgramName() in createPipeline()
1241 << " and fragment program " << frgProg->getProgramName() in createPipeline()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DGraphWriter.cpp132 static const char *getProgramName(GraphProgram::Name program) { in getProgramName() function
194 args.push_back(getProgramName(program)); in DisplayGraph()
225 (S.TryFindProgram(getProgramName(program), GeneratorPath) || in DisplayGraph()
/external/llvm/lib/Support/
DGraphWriter.cpp119 static const char *getProgramName(GraphProgram::Name program) { in getProgramName() function
184 args.push_back(getProgramName(program)); in DisplayGraph()
217 (S.TryFindProgram(getProgramName(program), GeneratorPath) || in DisplayGraph()
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationInvarianceTests.cpp160 inline std::string getProgramName (const std::string& baseName, const bool usePointMode, const bool… in getProgramName() function
167 inline std::string getProgramName (const std::string& baseName, const bool writePointSize) in getProgramName() function
357 …programCollection.glslSources.add(getProgramName("tese", *windingIter, *usePointModeIter)) << glu:… in addDefaultPrograms()
409 …programCollection.glslSources.add(getProgramName("geom", *usePointModeIter, writePointSize)) << gl… in addDefaultPrograms()
652 …AGE_TESSELLATION_EVALUATION_BIT, m_context.getBinaryCollection().get(getProgramName("tese", windin… in draw()
653 …K_SHADER_STAGE_GEOMETRY_BIT, m_context.getBinaryCollection().get(getProgramName("geom", usePoi… in draw()
1481 …AGE_TESSELLATION_EVALUATION_BIT, m_context.getBinaryCollection().get(getProgramName("tese", *windi… in iterate()
1482 …K_SHADER_STAGE_GEOMETRY_BIT, m_context.getBinaryCollection().get(getProgramName("geom", m_case… in iterate()
2040 …programCollection.glslSources.add(getProgramName("tese", writePointSize)) << glu::TessellationEval… in initPrograms()
2111 …STAGE_TESSELLATION_EVALUATION_BIT, context.getBinaryCollection().get(getProgramName("tese", tessPo… in test()
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktTextureTestUtil.cpp84 const char* getProgramName(Program program) in getProgramName() function
313 …programCollection.glslSources.add("vertex_" + std::string(getProgramName(program))) << glu::Vertex… in initializePrograms()
314 …programCollection.glslSources.add("fragment_" + std::string(getProgramName(program))) << glu::Frag… in initializePrograms()
1362 …kDevice, m_context.getBinaryCollection().get("vertex_" + std::string(getProgramName(progSpec))), 0… in renderQuad()
1363 …evice, m_context.getBinaryCollection().get("fragment_" + std::string(getProgramName(progSpec))), 0… in renderQuad()
/external/jcommander/
DCHANGELOG.md7 * Added: Add `getProgramName` to `JCommander`, #247
/external/jcommander/src/main/java/com/beust/jcommander/
DJCommander.java927 public String getProgramName(){ in getProgramName() method in JCommander
/external/jcommander/src/test/java/com/beust/jcommander/
DJCommanderTest.java1455 Assert.assertEquals(jcommander.getProgramName(), programName); in programName()