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

/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp731 void GLContext::uniform2fv (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.h204 virtual void uniform2fv(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.cpp3882 void WebGLRenderingContextBase::uniform2fv(const WebGLUniformLocation* location, Float32Array* v) function in class:blink::__anon11092::WebGLRenderingContextBase
3884 if (isContextLost() || !validateUniformParameters("uniform2fv", location, v, 2))
3887 webContext()->uniform2fv(location->location(), v->length() >> 1, v->data());
3890 void WebGLRenderingContextBase::uniform2fv(const WebGLUniformLocation* location, GLfloat* v, GLsizei size) function in class:blink::__anon11092::WebGLRenderingContextBase
3892 if (isContextLost() || !validateUniformParameters("uniform2fv", location, v, size, 2))
3895 webContext()->uniform2fv(location->location(), size >> 1, v);

Completed in 450 milliseconds