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

/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp761 void GLContext::uniform4iv (deInt32 location, deInt32 count, const deInt32* value) function in class:sglr::GLContext
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockWebGraphicsContext3D.h214 virtual void uniform4iv(WGC3Dint location, WGC3Dsizei count, const WGC3Dint* v) { } function in class:blink::MockWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp4027 void WebGLRenderingContextBase::uniform4iv(const WebGLUniformLocation* location, Int32Array* v) function in class:blink::__anon11092::WebGLRenderingContextBase
4029 if (isContextLost() || !validateUniformParameters("uniform4iv", location, v, 4))
4032 webContext()->uniform4iv(location->location(), v->length() >> 2, v->data());
4035 void WebGLRenderingContextBase::uniform4iv(const WebGLUniformLocation* location, GLint* v, GLsizei size) function in class:blink::__anon11092::WebGLRenderingContextBase
4037 if (isContextLost() || !validateUniformParameters("uniform4iv", location, v, size, 4))
4040 webContext()->uniform4iv(location->location(), size >> 2, v);

Completed in 334 milliseconds