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

/external/webkit/Source/WebCore/bindings/js/
H A DJSWebGLRenderingContextCustom.cpp459 context->uniform4fv(location, webGLArray.get(), ec);
494 context->uniform4fv(location, array.data(), array.size(), ec);
667 JSC::JSValue JSWebGLRenderingContext::uniform4fv(JSC::ExecState* exec) function in class:WebCore::JSWebGLRenderingContext
/external/webkit/Source/WebKit/chromium/src/
H A DGraphicsContext3DChromium.cpp670 void GraphicsContext3DInternal::uniform4fv(GC3Dint location, GC3Dfloat* v, GC3Dsizei size) function in class:WebCore::GraphicsContext3DInternal
672 m_impl->uniform4fv(location, size, v);
1095 DELEGATE_TO_INTERNAL_3(uniform4fv, GC3Dint, GC3Dfloat*, GC3Dsizei)
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DGraphicsContext3DOpenGL.cpp1014 void GraphicsContext3D::uniform4fv(GC3Dint location, GC3Dfloat* array, GC3Dsizei size) function in class:WebCore::GraphicsContext3D
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderingContext.cpp3600 void WebGLRenderingContext::uniform4fv(const WebGLUniformLocation* location, Float32Array* v, ExceptionCode& ec) function in class:WebCore::__anon13216::WebGLRenderingContext
3606 m_context->uniform4fv(location->location(), v->data(), v->length() / 4);
3610 void WebGLRenderingContext::uniform4fv(const WebGLUniformLocation* location, GC3Dfloat* v, GC3Dsizei size, ExceptionCode& ec) function in class:WebCore::__anon13216::WebGLRenderingContext
3616 m_context->uniform4fv(location->location(), v, size / 4);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContext3DQt.cpp241 glUniform4fvType uniform4fv; member in class:WebCore::GraphicsContext3DInternal
405 uniform4fv = GET_PROC_ADDRESS(glUniform4fv);
1300 void GraphicsContext3D::uniform4fv(GC3Dint location, GC3Dfloat* array, GC3Dsizei size) function in class:WebCore::GraphicsContext3D
1303 m_internal->uniform4fv(location, size, array);

Completed in 181 milliseconds