Searched defs:getProgram (Results 1 - 25 of 30) sorted by relevance

12

/external/llvm/tools/bugpoint/
H A DBugDriver.h133 Module *getProgram() const { return Program; } function in class:llvm::BugDriver
/external/swiftshader/src/OpenGL/libGL/
H A DResourceManager.cpp280 Program *ResourceManager::getProgram(unsigned int handle) function in class:gl::ResourceManager
H A DContext.cpp208 Program *programObject = mResourceManager->getProgram(mState.currentProgram);
902 Program *Context::getProgram(GLuint handle) function in class:gl::Context
904 return mResourceManager->getProgram(handle);
989 Program *newProgram = mResourceManager->getProgram(program);
990 Program *oldProgram = mResourceManager->getProgram(priorProgram);
1145 return mResourceManager->getProgram(mState.currentProgram);
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DBugDriver.h138 Module *getProgram() const { return Program; } function in class:llvm::BugDriver
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java242 List rewrites = getProgram(programName);
268 List rewrites = getProgram(programName);
320 protected List getProgram(String name) { method in class:TokenRewriteStream
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkPrograms.hpp91 const Program& operator* (void) const { return getProgram(); }
94 const Program& getProgram (void) const { return *m_impl->second; } function in class:vk::ProgramCollection::Iterator
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.cpp89 glu::ShaderProgram* ProgramLibrary::getProgram (Program program) function in class:deqp::gls::TextureTestUtil::ProgramLibrary
432 glu::ShaderProgram* program = m_programLibrary.getProgram(progSpec);
441 deUint32 prog = program->getProgram();
H A DglsShaderExecUtil.cpp471 m_renderCtx.getFunctions().useProgram(getProgram());
651 glu::draw(m_renderCtx, this->getProgram(), (int)vertexArrays.size(), &vertexArrays[0],
709 deUint32 getProgram (void) const { return m_program.getProgram(); } function in class:deqp::gls::ShaderExecUtil::VertexShaderExecutor
738 deUint32 getProgram (void) const { return m_program.getProgram(); } function in class:deqp::gls::ShaderExecUtil::GeometryShaderExecutor
778 deUint32 getProgram (void) const { return m_program.getProgram(); } function in class:deqp::gls::ShaderExecUtil::FragmentShaderExecutor
820 deUint32 getProgram (void) const { return m_program.getProgram(); } function in class:deqp::gls::ShaderExecUtil::BufferIoExecutor
[all...]
/external/swiftshader/src/OpenGL/libGLESv2/
H A DResourceManager.cpp254 Program *ResourceManager::getProgram(unsigned int handle) function in class:es2::ResourceManager
H A DContext.cpp184 Program *programObject = mResourceManager->getProgram(mState.currentProgram);
1097 Program *Context::getProgram(GLuint handle) const function in class:es2::Context
1099 return mResourceManager->getProgram(handle);
1295 Program *newProgram = mResourceManager->getProgram(program);
1296 Program *oldProgram = mResourceManager->getProgram(priorProgram);
1661 return mResourceManager->getProgram(mState.currentProgram);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py1163 rewrites = self.getProgram(programName)
1204 rewrites = self.getProgram(programName)
1221 def getProgram(self, name): member in class:TokenRewriteStream
/external/deqp/framework/opengl/
H A DgluShaderProgram.hpp129 deUint32 getProgram (void) const { return m_program; } function in class:glu::Program
140 deUint32 operator* (void) const { return getProgram(); }
191 deUint32 getProgram (void) const { return m_program.getProgram(); } function in class:glu::ShaderProgram
/external/deqp/modules/gles31/functional/
H A Des31fComputeShaderBuiltinVarTests.cpp103 deUint32 getProgram (const UVec3& localSize);
157 deUint32 ComputeBuiltinVarCase::getProgram (const UVec3& localSize) function in class:deqp::gles31::Functional::ComputeBuiltinVarCase
161 return cachePos->second->getProgram();
173 return program->getProgram();
210 const deUint32 program = getProgram(subCase.localSize);
H A Des31fGeometryShaderTests.cpp1811 virtual sglr::ShaderProgram& getProgram (void) = 0;
1932 sglr::ShaderProgram& program = getProgram();
2169 sglr::ShaderProgram& getProgram (void);
2205 sglr::ShaderProgram& GeometryExpanderRenderTest::getProgram (void) function in class:deqp::gles31::Functional::__anon5347::GeometryExpanderRenderTest
2215 sglr::ShaderProgram& getProgram (void);
2258 sglr::ShaderProgram& EmitTest::getProgram (void) function in class:deqp::gles31::Functional::__anon5347::EmitTest
2279 sglr::ShaderProgram& getProgram (void);
2316 sglr::ShaderProgram& VaryingTest::getProgram (void) function in class:deqp::gles31::Functional::__anon5347::VaryingTest
2469 sglr::ShaderProgram& getProgram (void);
2552 sglr::ShaderProgram& OutputCountCase::getProgram (voi function in class:deqp::gles31::Functional::__anon5347::OutputCountCase
2629 sglr::ShaderProgram& BuiltinVariableRenderTest::getProgram (void) function in class:deqp::gles31::Functional::__anon5347::BuiltinVariableRenderTest
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_build_util.h35 inline Program *getProgram() const { return prog; } function in class:nv50_ir::BuildUtil
210 prog = bb->getProgram();
220 prog = bb->getProgram();
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
H A DvktYCbCrImageQueryTests.cpp602 static VulkanProgram getProgram (Context& ctx, VkDescriptorSetLayout descriptorLayout, VkDescriptorSet descriptorSet) function in struct:vkt::ycbcr::__anon4701::LocalUtil
620 const VulkanProgram program (LocalUtil::getProgram(context, *descLayout, *descSet));
/external/deqp/modules/gles3/functional/
H A Des3fLifetimeTests.cpp91 m_scaleLoc = gl.getUniformLocation(getProgram(), "scale");
92 m_posLoc = gl.getAttribLocation(getProgram(), "pos");
138 GLU_CHECK_CALL_ERROR(gl.useProgram(getProgram()),
218 ScaleProgram& getProgram (void) { return m_program; } function in class:deqp::gles3::Functional::__anon5093::BufferVAOAttacher
293 , m_program (attacher.getProgram()) {}
520 GLU_CHECK_CALL(glUseProgram(program.getProgram()));
/external/deqp/modules/egl/
H A DteglGLES2SharedRenderingPerfTests.cpp114 GLuint getProgram (void) const { return m_program; } function in class:deqp::egl::__anon4881::TestContext
581 m_program = parent->getProgram();
H A DteglGLES2SharingThreadedTests.cpp95 const SharedPtr<Program> getProgram (int index) const { return m_programs[index]; } function in class:deqp::egl::GLES2ThreadTest::GLES2ResourceManager
2408 SharedPtr<GLES2ThreadTest::Program> program = m_threads[threadNdx]->context->resourceManager->getProgram(programNdx);
/external/deqp/external/openglcts/modules/gles31/
H A Des31cLayoutBindingTests.cpp226 glw::GLint location = m_gl.getUniformLocation(getProgram(), name);
238 glw::GLint getProgram() const function in class:glcts::LayoutBindingProgram
240 return m_program->getProgram();
295 m_gl.getUniformiv(getProgram(), location, &bindingPoint);
1463 LayoutBindingTestResult drawTestResult = ((*this).*(m_drawTest))(program->getProgram(), binding);
1809 gl().useProgram(program->getProgram());
2232 glw::GLuint idx = gl().getProgramResourceIndex(getProgram(), GL_UNIFORM, (*it).c_str());
2237 gl().getProgramResourceiv(getProgram(), GL_UNIFORM, idx, 1, &param, 1, NULL,
2245 gl().getProgramResourceiv(getProgram(), GL_ATOMIC_COUNTER_BUFFER, atomic_counter_buffer_idx, 1,
2264 glw::GLuint idx = gl().getProgramResourceIndex(getProgram(), GL_UNIFOR
[all...]
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
H A DesextcTextureCubeMapArraySampling.cpp3699 program = programs->getProgram(shader->m_type);
4305 programCollectionForFunction::getProgram(shaderType shader_type) const function in class:glcts::TextureCubeMapArraySamplingTest::programCollectionForFunction
/external/guice/extensions/persist/lib/
H A Dantlr-2.7.5h3.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement.java package antlr ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/annotation-tools/asmx/test/lib/
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 983 milliseconds

12