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

/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp766 void GLContext::uniformMatrix3fv (deInt32 location, deInt32 count, deInt32 transpose, const float *value) function in class:sglr::GLContext
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockWebGraphicsContext3D.h216 virtual void uniformMatrix3fv(WGC3Dint location, WGC3Dsizei count, WGC3Dboolean transpose, const WGC3Dfloat* value) { } function in class:blink::MockWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp4057 void WebGLRenderingContextBase::uniformMatrix3fv(const WebGLUniformLocation* location, GLboolean transpose, Float32Array* v) function in class:blink::__anon11092::WebGLRenderingContextBase
4059 if (isContextLost() || !validateUniformMatrixParameters("uniformMatrix3fv", location, transpose, v, 9))
4061 webContext()->uniformMatrix3fv(location->location(), v->length() / 9, transpose, v->data());
4064 void WebGLRenderingContextBase::uniformMatrix3fv(const WebGLUniformLocation* location, GLboolean transpose, GLfloat* v, GLsizei size) function in class:blink::__anon11092::WebGLRenderingContextBase
4066 if (isContextLost() || !validateUniformMatrixParameters("uniformMatrix3fv", location, transpose, v, size, 9))
4068 webContext()->uniformMatrix3fv(location->location(), size / 9, transpose, v);

Completed in 328 milliseconds