/external/chromium_org/cc/output/ |
D | output_surface.cc | 46 OutputSurface::OutputSurface(scoped_refptr<ContextProvider> context_provider) in OutputSurface() function in cc::OutputSurface 55 OutputSurface::OutputSurface(scoped_ptr<SoftwareOutputDevice> software_device) in OutputSurface() function in cc::OutputSurface 64 OutputSurface::OutputSurface(scoped_refptr<ContextProvider> context_provider, in OutputSurface() function in cc::OutputSurface 75 void OutputSurface::CommitVSyncParameters(base::TimeTicks timebase, in CommitVSyncParameters() 87 void OutputSurface::SetNeedsRedrawRect(const gfx::Rect& damage_rect) { in SetNeedsRedrawRect() 92 void OutputSurface::ReclaimResources(const CompositorFrameAck* ack) { in ReclaimResources() 96 void OutputSurface::DidLoseOutputSurface() { in DidLoseOutputSurface() 103 void OutputSurface::SetExternalStencilTest(bool enabled) { in SetExternalStencilTest() 107 void OutputSurface::SetExternalDrawConstraints( in SetExternalDrawConstraints() 122 OutputSurface::~OutputSurface() { in ~OutputSurface() [all …]
|
D | output_surface.h | 45 class CC_EXPORT OutputSurface { 51 explicit OutputSurface(scoped_refptr<ContextProvider> context_provider); 53 explicit OutputSurface(scoped_ptr<SoftwareOutputDevice> software_device); 55 OutputSurface(scoped_refptr<ContextProvider> context_provider, 58 virtual ~OutputSurface(); 156 struct OutputSurface::Capabilities capabilities_; 186 base::WeakPtrFactory<OutputSurface> weak_ptr_factory_; 192 DISALLOW_COPY_AND_ASSIGN(OutputSurface);
|
D | renderer_unittest.cc | 31 OutputSurface* output_surface, 38 OutputSurface* output_surface, in CreateRenderer() 49 OutputSurface* output_surface, in CreateRenderer() 62 output_surface_.reset(new OutputSurface(context_provider_)); in SetUp() 77 scoped_ptr<OutputSurface> output_surface_;
|
D | delegating_renderer.h | 15 class OutputSurface; variable 23 OutputSurface* output_surface, 45 OutputSurface* output_surface, 50 OutputSurface* output_surface_;
|
D | overlay_processor.h | 15 class OutputSurface; variable 32 OverlayProcessor(OutputSurface* surface, ResourceProvider* resource_provider); 42 OutputSurface* surface_;
|
D | output_surface_unittest.cc | 24 class TestOutputSurface : public OutputSurface { 27 : OutputSurface(context_provider) {} in TestOutputSurface() 30 : OutputSurface(software_device.Pass()) {} in TestOutputSurface() 34 : OutputSurface(context_provider, software_device.Pass()) {} in TestOutputSurface() 41 using OutputSurface::ReleaseGL;
|
D | software_renderer.h | 15 class OutputSurface; variable 33 OutputSurface* output_surface, 69 OutputSurface* output_surface,
|
/external/chromium_org/cc/test/ |
D | fake_layer_tree_host_client.cc | 21 scoped_ptr<OutputSurface> FakeLayerTreeHostClient::CreateOutputSurface( in CreateOutputSurface() 26 make_scoped_ptr(new SoftwareOutputDevice)).PassAs<OutputSurface>(); in CreateOutputSurface() 30 make_scoped_ptr(new SoftwareOutputDevice)).PassAs<OutputSurface>(); in CreateOutputSurface() 34 return FakeOutputSurface::CreateDelegating3d().PassAs<OutputSurface>(); in CreateOutputSurface() 35 return FakeOutputSurface::Create3d().PassAs<OutputSurface>(); in CreateOutputSurface()
|
D | fake_output_surface.cc | 20 : OutputSurface(context_provider), in FakeOutputSurface() 35 : OutputSurface(software_device.Pass()), in FakeOutputSurface() 50 : OutputSurface(context_provider, software_device.Pass()), in FakeOutputSurface() 79 OutputSurface::SwapBuffers(frame); in SwapBuffers() 87 OutputSurface::SetNeedsBeginFrame(enable); in SetNeedsBeginFrame() 104 if (OutputSurface::BindToClient(client)) { in BindToClient()
|
D | pixel_test_output_surface.cc | 14 : OutputSurface(context_provider), external_stencil_test_(false) {} in PixelTestOutputSurface() 18 : OutputSurface(software_device.Pass()), external_stencil_test_(false) {} in PixelTestOutputSurface() 24 OutputSurface::Reshape(expanded_size, scale_factor); in Reshape()
|
D | fake_output_surface_client.h | 13 class OutputSurface; variable 24 explicit FakeOutputSurfaceClient(OutputSurface* output_surface) in FakeOutputSurfaceClient() 64 OutputSurface* output_surface_;
|
D | pixel_test.h | 21 class OutputSurface; variable 46 scoped_ptr<OutputSurface> output_surface_; 97 OutputSurface* output_surface, in GLRendererWithExpandedViewport() 113 OutputSurface* output_surface, in SoftwareRendererWithExpandedViewport()
|
D | fake_layer_tree_host_client.h | 15 class OutputSurface; variable 37 virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback) OVERRIDE;
|
D | fake_output_surface.h | 21 class FakeOutputSurface : public OutputSurface { 102 using OutputSurface::ReleaseGL; 103 using OutputSurface::InitializeAndSetContext3d;
|
/external/chromium_org/content/browser/compositor/ |
D | browser_compositor_output_surface.cc | 22 : OutputSurface(context_provider), in BrowserCompositorOutputSurface() 34 : OutputSurface(software_device.Pass()), in BrowserCompositorOutputSurface() 63 if (!OutputSurface::BindToClient(client)) in BindToClient() 77 cc::OutputSurface::OnSwapBuffersComplete(); in OnSwapBuffersComplete() 103 cc::OutputSurface::OnSwapBuffersComplete(); in OnSurfaceDisplayed()
|
D | onscreen_display_client.cc | 14 scoped_ptr<cc::OutputSurface> software_surface, in OnscreenDisplayClient() 24 scoped_ptr<cc::OutputSurface> OnscreenDisplayClient::CreateOutputSurface() { in CreateOutputSurface() 27 return make_scoped_ptr(new cc::OutputSurface(onscreen_context_provider_)) in CreateOutputSurface()
|
D | onscreen_display_client.h | 27 scoped_ptr<cc::OutputSurface> software_surface, 34 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface() OVERRIDE; 38 scoped_ptr<cc::OutputSurface> software_surface_;
|
/external/chromium_org/cc/surfaces/ |
D | display_client.h | 12 class OutputSurface; variable 16 virtual scoped_ptr<OutputSurface> CreateOutputSurface() = 0;
|
/external/chromium_org/cc/resources/ |
D | scoped_resource_unittest.cc | 19 scoped_ptr<OutputSurface> output_surface(FakeOutputSurface::Create3d()); in TEST() 39 scoped_ptr<OutputSurface> output_surface(FakeOutputSurface::Create3d()); in TEST() 63 scoped_ptr<OutputSurface> output_surface(FakeOutputSurface::Create3d()); in TEST() 99 scoped_ptr<OutputSurface> output_surface(FakeOutputSurface::Create3d()); in TEST()
|
/external/chromium_org/cc/trees/ |
D | layer_tree_host_unittest_no_message_loop.cc | 28 class NoMessageLoopOutputSurface : public OutputSurface { 30 NoMessageLoopOutputSurface() : OutputSurface(TestContextProvider::Create()) {} in NoMessageLoopOutputSurface() 62 virtual scoped_ptr<OutputSurface> CreateOutputSurface( in CreateOutputSurface() 64 return make_scoped_ptr<OutputSurface>(new NoMessageLoopOutputSurface); in CreateOutputSurface()
|
D | layer_tree_host_client.h | 19 class OutputSurface; variable 33 virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback) = 0;
|
/external/chromium_org/android_webview/browser/ |
D | parent_output_surface.h | 12 class ParentOutputSurface : NON_EXPORTED_BASE(public cc::OutputSurface) { in NON_EXPORTED_BASE() argument 21 using cc::OutputSurface::SetExternalStencilTest; in NON_EXPORTED_BASE()
|
/external/chromium_org/content/renderer/android/ |
D | synchronous_compositor_factory.h | 18 class OutputSurface; variable 46 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
|
/external/chromium_org/mojo/services/view_manager/ |
D | context_factory_impl.cc | 28 scoped_ptr<cc::OutputSurface> ContextFactoryImpl::CreateOutputSurface( in CreateOutputSurface() 31 new cc::OutputSurface( in CreateOutputSurface()
|
/external/chromium_org/content/renderer/gpu/ |
D | compositor_output_surface.cc | 58 : OutputSurface(context_provider, software_device.Pass()), in CompositorOutputSurface() 77 if (OutputSurface::software_device()) in CompositorOutputSurface() 96 if (!cc::OutputSurface::BindToClient(client)) in BindToClient() 182 OutputSurface::SwapBuffers(frame); in SwapBuffers()
|