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

/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp736 void GLContext::uniform3fv (deInt32 location, deInt32 count, const float* value) function in class:sglr::GLContext
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockWebGraphicsContext3D.h208 virtual void uniform3fv(WGC3Dint location, WGC3Dsizei count, const WGC3Dfloat* v) { } function in class:blink::MockWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp3940 void WebGLRenderingContextBase::uniform3fv(const WebGLUniformLocation* location, Float32Array* v) function in class:blink::__anon11092::WebGLRenderingContextBase
3942 if (isContextLost() || !validateUniformParameters("uniform3fv", location, v, 3))
3945 webContext()->uniform3fv(location->location(), v->length() / 3, v->data());
3948 void WebGLRenderingContextBase::uniform3fv(const WebGLUniformLocation* location, GLfloat* v, GLsizei size) function in class:blink::__anon11092::WebGLRenderingContextBase
3950 if (isContextLost() || !validateUniformParameters("uniform3fv", location, v, size, 3))
3953 webContext()->uniform3fv(location->location(), size / 3, v);

Completed in 1693 milliseconds