HomeSort by relevance Sort by last modified time
    Searched refs:GraphicsContext3D (Results 26 - 50 of 80) sorted by null

12 3 4

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLBuffer.h 50 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLContextObject.cpp 50 deleteObject(m_context->graphicsContext3D());
56 GraphicsContext3D* WebGLContextObject::getAGraphicsContext3D() const
58 return m_context ? m_context->graphicsContext3D() : 0;
WebGLSharedObject.cpp 57 GraphicsContext3D* WebGLSharedObject::getAGraphicsContext3D() const
WebGLRenderbuffer.h 65 void deleteEmulatedStencilBuffer(GraphicsContext3D* context3d);
70 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLShader.h 49 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLContextAttributes.cpp 38 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create(GraphicsContext3D::Attributes attributes)
49 WebGLContextAttributes::WebGLContextAttributes(GraphicsContext3D::Attributes attributes)
120 GraphicsContext3D::Attributes WebGLContextAttributes::attributes() const
WebGLShader.cpp 45 setObject(ctx->graphicsContext3D()->createShader(type));
53 void WebGLShader::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object)
WebGLVertexArrayObjectOES.h 53 , type(GraphicsContext3D::FLOAT)
90 virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
WebGLContextGroup.cpp 50 GraphicsContext3D* WebGLContextGroup::getAGraphicsContext3D()
54 return (*it)->graphicsContext3D();
91 // Detach must happen before loseContextImpl, which destroys the GraphicsContext3D
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
Canvas2DLayerBridgeTest.cpp 60 static PassOwnPtr<FakeCanvas2DLayerBridge> create(PassRefPtr<GraphicsContext3D> context, SkDeferredCanvas* canvas, OpacityMode opacityMode)
65 FakeCanvas2DLayerBridge(PassRefPtr<GraphicsContext3D> context, SkDeferredCanvas* canvas, OpacityMode opacityMode) :
76 RefPtr<GraphicsContext3D> mainContext = GraphicsContext3D::createGraphicsContextFromWebContext(adoptPtr(new MockCanvasContext));
Canvas2DLayerBridge.cpp 34 #include "core/platform/graphics/GraphicsContext3D.h"
47 static SkSurface* createSurface(GraphicsContext3D* context3D, const IntSize& size)
62 PassOwnPtr<Canvas2DLayerBridge> Canvas2DLayerBridge::create(PassRefPtr<GraphicsContext3D> context, const IntSize& size, OpacityMode opacityMode)
73 Canvas2DLayerBridge::Canvas2DLayerBridge(PassRefPtr<GraphicsContext3D> context, SkDeferredCanvas* canvas, OpacityMode opacityMode)
203 RefPtr<GraphicsContext3D> sharedContext = SharedGraphicsContext3D::get();
268 m_context->bindTexture(GraphicsContext3D::TEXTURE_2D, mailboxInfo->m_image->getTexture()->getTextureHandle());
269 m_context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MAG_FILTER, GraphicsContext3D::LINEAR);
270 m_context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MIN_FILTER, GraphicsContext3D::LINEAR)
    [all...]
Canvas2DLayerBridge.h 31 #include "core/platform/graphics/GraphicsContext3D.h"
54 static PassOwnPtr<Canvas2DLayerBridge> create(PassRefPtr<GraphicsContext3D>, const IntSize&, OpacityMode);
85 Canvas2DLayerBridge(PassRefPtr<GraphicsContext3D>, SkDeferredCanvas*, OpacityMode);
90 RefPtr<GraphicsContext3D> m_context;
Canvas2DLayerManagerTest.cpp 31 #include "core/platform/graphics/GraphicsContext3D.h"
47 FakeCanvas2DLayerBridge(PassRefPtr<GraphicsContext3D> context, SkDeferredCanvas* canvas)
92 static PassOwnPtr<SkDeferredCanvas> createCanvas(GraphicsContext3D* context)
110 RefPtr<GraphicsContext3D> context = GraphicsContext3D::createGraphicsContextFromWebContext(adoptPtr(new WebKit::FakeWebGraphicsContext3D));
137 RefPtr<GraphicsContext3D> context = GraphicsContext3D::createGraphicsContextFromWebContext(adoptPtr(new WebKit::FakeWebGraphicsContext3D));
154 RefPtr<GraphicsContext3D> context = GraphicsContext3D::createGraphicsContextFromWebContext(adoptPtr(new WebKit::FakeWebGraphicsContext3D));
205 RefPtr<GraphicsContext3D> context = GraphicsContext3D::createGraphicsContextFromWebContext(adoptPtr(new WebKit::FakeWebGrap (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterRenderer.h 49 class GraphicsContext3D;
53 static PassRefPtr<CustomFilterRenderer> create(PassRefPtr<GraphicsContext3D>, CustomFilterProgramType, const CustomFilterParameterList&,
68 CustomFilterRenderer(PassRefPtr<GraphicsContext3D>, CustomFilterProgramType, const CustomFilterParameterList&,
83 RefPtr<GraphicsContext3D> m_context;
FECustomFilter.h 45 class GraphicsContext3D;
50 static PassRefPtr<FECustomFilter> create(Filter*, PassRefPtr<GraphicsContext3D>, PassRefPtr<CustomFilterValidatedProgram>, const CustomFilterParameterList&,
56 FECustomFilter(Filter*, PassRefPtr<GraphicsContext3D>, PassRefPtr<CustomFilterValidatedProgram>, const CustomFilterParameterList&,
83 RefPtr<GraphicsContext3D> m_context;
CustomFilterCompiledProgram.h 33 #include "core/platform/graphics/GraphicsContext3D.h"
44 static PassRefPtr<CustomFilterCompiledProgram> create(PassRefPtr<GraphicsContext3D> context, const String& validatedVertexShader, const String& validatedFragmentShader, CustomFilterProgramType programType)
69 CustomFilterCompiledProgram(PassRefPtr<GraphicsContext3D>, const String& validatedVertexShader, const String& validatedFragmentShader, CustomFilterProgramType);
75 RefPtr<GraphicsContext3D> m_context;
CustomFilterCompiledProgram.cpp 36 CustomFilterCompiledProgram::CustomFilterCompiledProgram(PassRefPtr<GraphicsContext3D> context, const String& validatedVertexShader, const String& validatedFragmentShader, CustomFilterProgramType programType)
54 Platform3DObject vertexShader = compileShader(GraphicsContext3D::VERTEX_SHADER, validatedVertexShader);
58 Platform3DObject fragmentShader = compileShader(GraphicsContext3D::FRAGMENT_SHADER, validatedFragmentShader);
86 m_context->getShaderiv(shader, GraphicsContext3D::COMPILE_STATUS, &compiled);
105 m_context->getProgramiv(program, GraphicsContext3D::LINK_STATUS, &linked);
CustomFilterGlobalContext.cpp 34 #include "core/platform/graphics/GraphicsContext3D.h"
77 GraphicsContext3D::Attributes attributes;
82 m_context = GraphicsContext3D::create(attributes);
86 m_context->enable(GraphicsContext3D::DEPTH_TEST);
CustomFilterProgram.h 41 class GraphicsContext3D;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
DrawingBufferTest.cpp 35 #include "core/platform/graphics/GraphicsContext3D.h"
63 RefPtr<GraphicsContext3D> context = GraphicsContext3D::createGraphicsContextFromWebContext(adoptPtr(new FakeWebGraphicsContext3D));
DrawingBuffer.h 34 #include "core/platform/graphics/GraphicsContext3D.h"
52 class GraphicsContext3D;
78 static PassRefPtr<DrawingBuffer> create(GraphicsContext3D*, const IntSize&, PreserveDrawingBuffer, PassRefPtr<ContextEvictionManager>);
132 DrawingBuffer(GraphicsContext3D*, const IntSize&, bool multisampleExtensionSupported,
172 RefPtr<GraphicsContext3D> m_context;
195 GraphicsContext3D::Attributes m_attributes;
  /external/chromium_org/cc/output/
delegating_renderer.cc 61 WebGraphicsContext3D* context3d = resource_provider_->GraphicsContext3D();
174 WebGraphicsContext3D* context3d = resource_provider_->GraphicsContext3D();
185 WebGraphicsContext3D* context = resource_provider_->GraphicsContext3D();
204 WebGraphicsContext3D* context = resource_provider_->GraphicsContext3D();
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Extensions3D.h 35 class GraphicsContext3D;
248 // returning the same error. Restoring the GraphicsContext3D is handled
322 // Instances of this class are strictly owned by the GraphicsContext3D implementation and do not
324 friend class GraphicsContext3D;
325 explicit Extensions3D(GraphicsContext3D*);
327 // Weak pointer back to GraphicsContext3D.
328 GraphicsContext3D* m_context;
ImageBuffer.h 56 class GraphicsContext3D;
131 bool copyToPlatformTexture(GraphicsContext3D&, Platform3DObject, GC3Denum, GC3Denum, GC3Dint, bool, bool);
MediaPlayer.h 39 class GraphicsContext3D;
155 virtual bool copyVideoTextureToPlatformTexture(GraphicsContext3D*, Platform3DObject, GC3Dint, GC3Denum, GC3Denum, bool, bool) = 0;

Completed in 207 milliseconds

12 3 4