HomeSort by relevance Sort by last modified time
    Searched refs:ARRAY_BUFFER (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
GeometryBinding.cpp 54 GLC(m_context, m_context->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, m_quadVerticesVbo));
55 GLC(m_context, m_context->bufferData(GraphicsContext3D::ARRAY_BUFFER, sizeof(vertices), vertices, GraphicsContext3D::STATIC_DRAW));
70 GLC(m_context, m_context->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, quadVerticesVbo()));
GLES2Canvas.cpp 655 m_context->graphicsContext3D()->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, m_pathVertexBuffer);
656 m_context->graphicsContext3D()->bufferData(GraphicsContext3D::ARRAY_BUFFER, inVertices.size() * 2 * sizeof(float), inVertices.data(), GraphicsContext3D::STREAM_DRAW);
695 m_context->graphicsContext3D()->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, m_pathVertexBuffer);
696 checkGLError("createVertexBufferFromPath, bindBuffer ARRAY_BUFFER");
697 m_context->graphicsContext3D()->bufferData(GraphicsContext3D::ARRAY_BUFFER, vertices.size() * 2 * sizeof(float), vertices.data(), GraphicsContext3D::STREAM_DRAW);
698 checkGLError("createVertexBufferFromPath, bufferData ARRAY_BUFFER");
717 m_context->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, m_pathVertexBuffer);
721 m_context->bufferData(GraphicsContext3D::ARRAY_BUFFER,
724 m_context->bufferSubData(GraphicsContext3D::ARRAY_BUFFER, 0, byteSizeOfVertices, m_pathCache.vertices());
725 m_context->bufferSubData(GraphicsContext3D::ARRAY_BUFFER, byteSizeOfVertices, byteSizeOfTexCoords, m_pathCache.texcoords())
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLBuffer.cpp 92 case GraphicsContext3D::ARRAY_BUFFER:
147 case GraphicsContext3D::ARRAY_BUFFER:
199 if (target == GraphicsContext3D::ARRAY_BUFFER || target == GraphicsContext3D::ELEMENT_ARRAY_BUFFER)
WebGLRenderingContext.cpp 684 if (target == GraphicsContext3D::ARRAY_BUFFER)
    [all...]
WebGLRenderingContext.idl 103 const unsigned int ARRAY_BUFFER = 0x8892;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
SharedGraphicsContext3D.cpp 354 m_context->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, m_quadVertices);
355 m_context->bufferData(GraphicsContext3D::ARRAY_BUFFER, sizeof(vertices), vertices, GraphicsContext3D::STATIC_DRAW);
357 m_context->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, m_quadVertices);
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 147 ARRAY_BUFFER = 0x8892,
    [all...]

Completed in 44 milliseconds