HomeSort by relevance Sort by last modified time
    Searched refs:Platform3DObject (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLObject.h 43 Platform3DObject object() const { return m_object; }
65 void setObject(Platform3DObject);
68 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject) = 0;
77 Platform3DObject m_object;
WebGLBuffer.h 50 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLShader.h 49 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLBuffer.cpp 52 void WebGLBuffer::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object)
WebGLObject.cpp 43 void WebGLObject::setObject(Platform3DObject object)
WebGLProgram.h 66 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLRenderbuffer.cpp 56 void WebGLRenderbuffer::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object)
WebGLShader.cpp 53 void WebGLShader::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object)
WebGLRenderbuffer.h 70 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLDrawBuffers.cpp 115 Platform3DObject fbo = context->createFramebuffer();
124 Platform3DObject depthStencil = 0;
130 Platform3DObject depth = 0;
137 Vector<Platform3DObject> colors;
141 Platform3DObject color = context->createTexture();
WebGLFramebuffer.h 111 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLVertexArrayObjectOES.h 90 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLTexture.h 81 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
DrawingBuffer.h 107 void setTexture2DBinding(Platform3DObject texture) { m_texture2DBinding = texture; }
111 void setFramebufferBinding(Platform3DObject fbo) { m_framebufferBinding = fbo; }
119 Platform3DObject framebuffer() const;
137 Platform3DObject frontColorBuffer() const;
138 Platform3DObject colorBuffer() const { return m_colorBuffer; }
168 Platform3DObject m_texture2DBinding;
169 Platform3DObject m_framebufferBinding;
176 Platform3DObject m_fbo;
177 Platform3DObject m_colorBuffer;
178 Platform3DObject m_frontColorBuffer
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
FECustomFilter.h 68 void drawFilterMesh(Platform3DObject inputTexture);
88 Platform3DObject m_inputTexture;
89 Platform3DObject m_frameBuffer;
90 Platform3DObject m_depthBuffer;
91 Platform3DObject m_destTexture;
94 Platform3DObject m_multisampleFrameBuffer;
95 Platform3DObject m_multisampleRenderBuffer;
96 Platform3DObject m_multisampleDepthBuffer;
CustomFilterMesh.h 50 Platform3DObject verticesBufferObject() const { return m_verticesBufferObject; }
53 Platform3DObject elementsBufferObject() const { return m_elementsBufferObject; }
64 Platform3DObject m_verticesBufferObject;
67 Platform3DObject m_elementsBufferObject;
CustomFilterCompiledProgram.h 67 Platform3DObject program() const { return m_program; }
71 Platform3DObject compileShader(GC3Denum shaderType, const String& shaderString);
72 Platform3DObject linkProgram(Platform3DObject vertexShader, Platform3DObject fragmentShader);
76 Platform3DObject m_program;
CustomFilterCompiledProgram.cpp 54 Platform3DObject vertexShader = compileShader(GraphicsContext3D::VERTEX_SHADER, validatedVertexShader);
58 Platform3DObject fragmentShader = compileShader(GraphicsContext3D::FRAGMENT_SHADER, validatedFragmentShader);
77 Platform3DObject CustomFilterCompiledProgram::compileShader(GC3Denum shaderType, const String& shaderString)
81 Platform3DObject shader = m_context->createShader(shaderType);
97 Platform3DObject CustomFilterCompiledProgram::linkProgram(Platform3DObject vertexShader, Platform3DObject fragmentShader)
99 Platform3DObject program = m_context->createProgram();
CustomFilterRenderer.h 62 void draw(Platform3DObject, const IntSize&);
80 void bindProgramAndBuffers(Platform3DObject inputTexture);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Extensions3D.h 259 Platform3DObject createVertexArrayOES();
260 void deleteVertexArrayOES(Platform3DObject);
261 GC3Dboolean isVertexArrayOES(Platform3DObject);
262 void bindVertexArrayOES(Platform3DObject);
265 String getTranslatedShaderSourceANGLE(Platform3DObject);
271 void copyTextureCHROMIUM(GC3Denum, Platform3DObject, Platform3DObject, GC3Dint, GC3Denum, GC3Denum);
302 Platform3DObject createQueryEXT();
303 void deleteQueryEXT(Platform3DObject);
304 GC3Dboolean isQueryEXT(Platform3DObject);
    [all...]
GraphicsTypes3D.h 51 typedef GC3Duint Platform3DObject;
Extensions3D.cpp 97 Platform3DObject Extensions3D::createVertexArrayOES()
102 void Extensions3D::deleteVertexArrayOES(Platform3DObject array)
107 GC3Dboolean Extensions3D::isVertexArrayOES(Platform3DObject array)
112 void Extensions3D::bindVertexArrayOES(Platform3DObject array)
117 String Extensions3D::getTranslatedShaderSourceANGLE(Platform3DObject shader)
142 Platform3DObject Extensions3D::createQueryEXT()
147 void Extensions3D::deleteQueryEXT(Platform3DObject query)
152 GC3Dboolean Extensions3D::isQueryEXT(Platform3DObject query)
157 void Extensions3D::beginQueryEXT(GC3Denum target, Platform3DObject query)
172 void Extensions3D::getQueryObjectuivEXT(Platform3DObject query, GC3Denum pname, GC3Duint* params
    [all...]
GraphicsContext3D.h 522 void attachShader(Platform3DObject program, Platform3DObject shader);
523 void bindAttribLocation(Platform3DObject, GC3Duint index, const String& name);
524 void bindBuffer(GC3Denum target, Platform3DObject);
525 void bindFramebuffer(GC3Denum target, Platform3DObject);
526 void bindRenderbuffer(GC3Denum target, Platform3DObject);
527 void bindTexture(GC3Denum target, Platform3DObject);
544 void compileShader(Platform3DObject);
554 void detachShader(Platform3DObject, Platform3DObject);
    [all...]
GraphicsContext3D.cpp 69 Platform3DObject* frameBufferId, int* width, int* height)
367 DELEGATE_TO_WEBCONTEXT_2(attachShader, Platform3DObject, Platform3DObject)
369 void GraphicsContext3D::bindAttribLocation(Platform3DObject program, GC3Duint index, const String& name)
374 DELEGATE_TO_WEBCONTEXT_2(bindBuffer, GC3Denum, Platform3DObject)
375 DELEGATE_TO_WEBCONTEXT_2(bindFramebuffer, GC3Denum, Platform3DObject)
376 DELEGATE_TO_WEBCONTEXT_2(bindRenderbuffer, GC3Denum, Platform3DObject)
377 DELEGATE_TO_WEBCONTEXT_2(bindTexture, GC3Denum, Platform3DObject)
398 DELEGATE_TO_WEBCONTEXT_1(compileShader, Platform3DObject)
408 DELEGATE_TO_WEBCONTEXT_2(detachShader, Platform3DObject, Platform3DObject
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLVideoElement.h 67 bool copyVideoTextureToPlatformTexture(GraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY);

Completed in 104 milliseconds

1 2