Searched defs:getUniformLocation (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/ui/compositor/
H A Dtest_web_graphics_context_3d.cc138 WebKit::WGC3Dint TestWebGraphicsContext3D::getUniformLocation( function in class:ui::TestWebGraphicsContext3D
/external/chromium_org/cc/debug/
H A Dfake_web_graphics_context_3d.cc201 WebKit::WGC3Dint FakeWebGraphicsContext3D::getUniformLocation( function in class:cc::FakeWebGraphicsContext3D
/external/chromium_org/cc/test/
H A Dtest_web_graphics_context_3d.cc191 WGC3Dint TestWebGraphicsContext3D::getUniformLocation( function in class:cc::TestWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DGraphicsContext3D.cpp486 GC3Dint GraphicsContext3D::getUniformLocation(Platform3DObject program, const String& name) function in class:WebCore::GraphicsContext3D
488 return m_impl->getUniformLocation(program, name.utf8().data());
/external/chromium_org/cc/output/
H A Dgl_renderer_unittest.cc617 virtual WGC3Dint getUniformLocation(WebGLId program, const WGC3Dchar* name) { function in class:cc::__anon4092::ForbidSynchronousCallContext
/external/chromium_org/third_party/WebKit/Source/core/tests/
H A DFakeWebGraphicsContext3D.h167 virtual WGC3Dint getUniformLocation(WebGLId program, const WGC3Dchar* name) { return 0; } function in class:WebKit::FakeWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContext.cpp2652 GC3Dint loc = m_context->getUniformLocation(objectOrZero(program), name);
2765 PassRefPtr<WebGLUniformLocation> WebGLRenderingContext::getUniformLocation(WebGLProgram* program, const String& name) function in class:WebCore::WebGLRenderingContext
2767 if (isContextLost() || !validateWebGLObject("getUniformLocation", program))
2769 if (!validateLocationLength("getUniformLocation", name))
2771 if (!validateString("getUniformLocation", name))
2776 synthesizeGLError(GraphicsContext3D::INVALID_OPERATION, "getUniformLocation", "program not linked");
2779 GC3Dint uniformLocation = m_context->getUniformLocation(objectOrZero(program), name);

Completed in 60 milliseconds