Searched refs:uniform3fv (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp536 case kUniform3v: context->uniform3fv(location, array); break;
563 case kUniform3v: context->uniform3fv(location, data, len); break;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContext.h261 void uniform3fv(const WebGLUniformLocation*, Float32Array* v);
262 void uniform3fv(const WebGLUniformLocation*, GC3Dfloat* v, GC3Dsizei);
H A DWebGLRenderingContext.idl635 [StrictTypeChecking, Custom] void uniform3fv(WebGLUniformLocation location, Float32Array v);
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);
/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/cc/debug/
H A Dfake_web_graphics_context_3d.h447 virtual void uniform3fv( function in class:cc::FakeWebGraphicsContext3D
/external/chromium_org/cc/output/
H A Dgl_renderer.cc1062 GLC(Context(), Context()->uniform3fv(shader_edge_location, 8, edge));
1266 GLC(Context(), Context()->uniform3fv(uniforms.edge_location, 8, edge));
1438 GLC(Context(), Context()->uniform3fv(uniforms.edge_location, 8, edge));
1595 GLC(Context(), Context()->uniform3fv(yuv_adj_location, 1, yuv_adjust));
/external/chromium_org/content/common/gpu/client/
H A Dwebgraphicscontext3d_command_buffer_impl.h416 virtual void uniform3fv(WGC3Dint location,
H A Dwebgraphicscontext3d_command_buffer_impl.cc1167 DELEGATE_TO_GL_3(uniform3fv, Uniform3fv, WGC3Dint, WGC3Dsizei,
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DGraphicsContext3D.h639 void uniform3fv(GC3Dint location, GC3Dsizei, GC3Dfloat* v);
H A DGraphicsContext3D.cpp548 DELEGATE_TO_WEBCONTEXT_3(uniform3fv, GC3Dint, GC3Dsizei, GC3Dfloat*)
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebGraphicsContext3D.h361 virtual void uniform3fv(WGC3Dint location, WGC3Dsizei count, const WGC3Dfloat* v) = 0;
/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/webkit/common/gpu/
H A Dwebgraphicscontext3d_in_process_command_buffer_impl.h346 virtual void uniform3fv(WGC3Dint location,
H A Dwebgraphicscontext3d_in_process_command_buffer_impl.cc926 DELEGATE_TO_GL_3(uniform3fv, Uniform3fv, WGC3Dint, WGC3Dsizei,

Completed in 124 milliseconds