Searched refs:ShaderSource (Results 1 - 25 of 50) sorted by relevance

12

/external/deqp/framework/opengl/
H A DgluShaderProgram.hpp243 struct ShaderSource struct in namespace:glu
248 ShaderSource (void) : shaderType(SHADERTYPE_LAST) {} function in struct:glu::ShaderSource
249 ShaderSource (glu::ShaderType shaderType_, const std::string& source_) : shaderType(shaderType_), source(source_) { DE_ASSERT(!source_.empty()); } function in struct:glu::ShaderSource
252 struct VertexSource : public ShaderSource
254 VertexSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_VERTEX, source_) {}
257 struct FragmentSource : public ShaderSource
259 FragmentSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_FRAGMENT, source_) {}
262 struct GeometrySource : public ShaderSource
264 GeometrySource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_GEOMETRY, source_) {}
267 struct ComputeSource : public ShaderSource
[all...]
/external/chromium_org/third_party/angle/samples/translator/
H A Dtranslator.cpp36 typedef std::vector<char*> ShaderSource; typedef
37 static bool ReadShaderSource(const char* fileName, ShaderSource& source);
38 static void FreeShaderSource(ShaderSource& source);
269 ShaderSource source;
352 static bool ReadShaderSource(const char* fileName, ShaderSource& source) {
382 static void FreeShaderSource(ShaderSource& source) {
383 for (ShaderSource::size_type i = 0; i < source.size(); ++i) {
/external/deqp/executor/
H A DxeTestCaseResult.hpp70 class ShaderSource;
283 class ShaderSource : public Item class in namespace:xe::ri
286 ShaderSource (void) : Item(TYPE_SHADERSOURCE) {} function in class:xe::ri::ShaderSource
287 ~ShaderSource (void) {}
321 ShaderSource source;
H A DxeTestLogWriter.cpp335 dst << Writer::BeginElement("ShaderSource") << static_cast<const ri::ShaderSource&>(item).source << Writer::EndElement;
/external/chromium_org/mojo/apps/js/bindings/gl/
H A Dcontext.h49 static void ShaderSource(GLuint shader, const std::string& source);
H A Dcontext.cc97 void Context::ShaderSource(GLuint shader, const std::string& source) { function in class:mojo::js::gl::Context
144 .SetMethod("shaderSource", ShaderSource)
/external/chromium_org/third_party/skia/src/gpu/gl/builders/
H A DGrGLShaderStringBuilder.cpp41 GR_GL_CALL(gli, ShaderSource(shaderId, 1, &sourceStr, &sourceLength));
/external/chromium_org/cc/output/
H A Dprogram_binding.cc85 context->ShaderSource(
/external/deqp/modules/gles3/stress/
H A Des3sLongShaderTests.cpp184 glu::ShaderSource getSource (void);
217 glu::ShaderSource LongShaderGenerator::getSource (void)
222 return glu::ShaderSource(m_spec.shaderType, m_source);
393 sources << glu::ShaderSource(otherShader, getConstShaderSource(otherShader));
/external/skia/src/gpu/gl/angle/
H A DGrGLCreateANGLEInterface.cpp99 GET_PROC(ShaderSource);
/external/deqp/modules/gles31/functional/
H A Des31fBasicComputeShaderTests.cpp94 ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE,
149 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE, src.str()));
269 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE, src.str()));
388 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE, src.str()));
503 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE, src.str()));
834 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE, src.str()));
926 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE, src.str()));
1013 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE, src.str()));
1117 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUTE, src.str()));
1245 const ShaderProgram program (m_context.getRenderContext(), ProgramSources() << ShaderSource(SHADERTYPE_COMPUT
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLAssembleInterface.cpp149 GET_PROC(ShaderSource);
376 GET_PROC(ShaderSource);
/external/chromium_org/gpu/GLES2/
H A Dgl2chromium_autogen.h115 #define glShaderSource GLES2_GET_FUN(ShaderSource)
/external/skia/src/gpu/gl/
H A DGrGLAssembleInterface.cpp128 GET_PROC(ShaderSource);
/external/chromium_org/ppapi/examples/video_capture/
H A Dvideo_capture.cc410 gles2_if_->ShaderSource(context, shader, 1, &source, &size);
/external/deqp/modules/egl/
H A DteglGLES2SharingThreadedTests.cpp1402 class ShaderSource : public Operation class in namespace:deqp::egl::GLES2ThreadTest
1405 ShaderSource (SharedPtr<Shader> sharder, const char* source, bool useSync, bool serverSync);
1413 ShaderSource::ShaderSource (SharedPtr<Shader> shader, const char* source, bool useSync, bool serverSync) function in class:deqp::egl::GLES2ThreadTest::ShaderSource
1414 : Operation ("ShaderSource", useSync, serverSync)
1422 void ShaderSource::exec (tcu::ThreadUtil::Thread& thread)
2713 m_threads[threadNdx]->addOperation(new GLES2ThreadTest::ShaderSource(shader, (shader->type == GL_VERTEX_SHADER ? vertexShaderSource : fragmentShaderSource), m_config.useFenceSync, m_config.serverSync));
3138 m_threads[0]->addOperation(new GLES2ThreadTest::ShaderSource(vertexShader, vertexShaderSource, m_config.useFenceSync, m_config.serverSync));
3142 m_threads[0]->addOperation(new GLES2ThreadTest::ShaderSource(fragmentShader, fragmentShaderSource, m_config.useFenceSync, m_config.serverSync));
3226 m_threads[0]->addOperation(new GLES2ThreadTest::ShaderSource(vertexShade
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dppb_opengles2_shared.cc945 void ShaderSource(PP_Resource context_id, function in namespace:ppapi::__anon10171
952 ToGles2Impl(&enter)->ShaderSource(shader, count, str, length);
1660 &ShaderSource, &StencilFunc,
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_interface_stub_impl_autogen.h375 void GLES2InterfaceStub::ShaderSource(GLuint /* shader */, function in class:GLES2InterfaceStub
H A Dgles2_trace_implementation_impl_autogen.h654 void GLES2TraceImplementation::ShaderSource(GLuint shader, function in class:GLES2TraceImplementation
658 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::ShaderSource");
659 gl_->ShaderSource(shader, count, str, length);
/external/chromium_org/native_client_sdk/src/examples/api/video_decode/
H A Dvideo_decode.cc710 gles2_if_->ShaderSource(context_->pp_resource(), shader, 1, &source, &size);
/external/chromium_org/ppapi/examples/video_decode/
H A Dvideo_decode.cc711 gles2_if_->ShaderSource(context_->pp_resource(), shader, 1, &source, &size);
H A Dvideo_decode_dev.cc676 gles2_if_->ShaderSource(context_->pp_resource(), shader, 1, &source, &size);
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest_programs.cc640 EXPECT_CALL(*gl_, ShaderSource(kServiceShaderId, 1, _, _));
672 EXPECT_CALL(*gl_, ShaderSource(kServiceShaderId, 1, _, _));
H A Dprogram_manager_unittest.cc1652 ShaderSource(shader_id, 1, Pointee(src), NULL)).Times(1);
1662 ShaderSource(shader_id, 1, Pointee(src), NULL)).Times(0);
1672 ShaderSource(shader_id, 1, Pointee(src), NULL)).Times(1);
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dppb_opengles2_thunk.cc932 void ShaderSource(PP_Resource context_id, function in namespace:mojo::examples::__anon8751
1428 &ShaderSource, &StencilFunc,

Completed in 901 milliseconds

12