Searched defs:uniform3fv (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/cc/debug/
H A Dfake_web_graphics_context_3d.h447 virtual void uniform3fv( function in class:cc::FakeWebGraphicsContext3D
/external/chromium_org/ui/compositor/
H A Dtest_web_graphics_context_3d.h345 virtual void uniform3fv(WebKit::WGC3Dint location, function in class:ui::TestWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/tests/
H A DFakeWebGraphicsContext3D.h216 virtual void uniform3fv(WGC3Dint location, WGC3Dsizei count, const WGC3Dfloat* v) { } function in class:WebKit::FakeWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContext.cpp3766 void WebGLRenderingContext::uniform3fv(const WebGLUniformLocation* location, Float32Array* v) function in class:WebCore::WebGLRenderingContext
3768 if (isContextLost() || !validateUniformParameters("uniform3fv", location, v, 3))
3771 m_context->uniform3fv(location->location(), v->length() / 3, v->data());
3774 void WebGLRenderingContext::uniform3fv(const WebGLUniformLocation* location, GC3Dfloat* v, GC3Dsizei size) function in class:WebCore::WebGLRenderingContext
3776 if (isContextLost() || !validateUniformParameters("uniform3fv", location, v, size, 3))
3779 m_context->uniform3fv(location->location(), size / 3, v);

Completed in 119 milliseconds