Searched defs:vertexAttribPointer (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/webkit/common/gpu/
H A Dwebgraphicscontext3d_impl.cc702 void WebGraphicsContext3DImpl::vertexAttribPointer( function in class:webkit::gpu::WebGraphicsContext3DImpl
/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp656 void GLContext::vertexAttribPointer (deUint32 index, int size, deUint32 type, deBool normalized, int stride, const void *pointer) function in class:sglr::GLContext
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockWebGraphicsContext3D.h230 virtual void vertexAttribPointer(WGC3Duint index, WGC3Dint size, WGC3Denum type, WGC3Dboolean normalized, WGC3Dsizei stride, WGC3Dintptr offset) { } function in class:blink::MockWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp4173 void WebGLRenderingContextBase::vertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, long long offset) function in class:blink::__anon11092::WebGLRenderingContextBase
4185 synthesizeGLError(GL_INVALID_ENUM, "vertexAttribPointer", "invalid type");
4189 synthesizeGLError(GL_INVALID_VALUE, "vertexAttribPointer", "index out of range");
4193 synthesizeGLError(GL_INVALID_VALUE, "vertexAttribPointer", "bad size or stride");
4196 if (!validateValueFitNonNegInt32("vertexAttribPointer", "offset", offset))
4199 synthesizeGLError(GL_INVALID_OPERATION, "vertexAttribPointer", "no bound ARRAY_BUFFER");
4205 synthesizeGLError(GL_INVALID_OPERATION, "vertexAttribPointer", "stride or offset not valid for type");
4211 webContext()->vertexAttribPointer(index, size, type, normalized, stride, static_cast<GLintptr>(offset));

Completed in 4223 milliseconds