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

/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp726 void GLContext::uniform1fv (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.h200 virtual void uniform1fv(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.cpp3824 void WebGLRenderingContextBase::uniform1fv(const WebGLUniformLocation* location, Float32Array* v) function in class:blink::__anon11092::WebGLRenderingContextBase
3826 if (isContextLost() || !validateUniformParameters("uniform1fv", location, v, 1))
3829 webContext()->uniform1fv(location->location(), v->length(), v->data());
3832 void WebGLRenderingContextBase::uniform1fv(const WebGLUniformLocation* location, GLfloat* v, GLsizei size) function in class:blink::__anon11092::WebGLRenderingContextBase
3834 if (isContextLost() || !validateUniformParameters("uniform1fv", location, v, size, 1))
3837 webContext()->uniform1fv(location->location(), size, v);

Completed in 191 milliseconds