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

/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp741 void GLContext::uniform4fv (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.h212 virtual void uniform4fv(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.cpp3998 void WebGLRenderingContextBase::uniform4fv(const WebGLUniformLocation* location, Float32Array* v) function in class:blink::__anon11092::WebGLRenderingContextBase
4000 if (isContextLost() || !validateUniformParameters("uniform4fv", location, v, 4))
4003 webContext()->uniform4fv(location->location(), v->length() >> 2, v->data());
4006 void WebGLRenderingContextBase::uniform4fv(const WebGLUniformLocation* location, GLfloat* v, GLsizei size) function in class:blink::__anon11092::WebGLRenderingContextBase
4008 if (isContextLost() || !validateUniformParameters("uniform4fv", location, v, size, 4))
4011 webContext()->uniform4fv(location->location(), size >> 2, v);

Completed in 118 milliseconds