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

1 2 3 4

  /external/chromium_org/cc/output/
output_surface.cc 63 explicit OutputSurfaceCallbacks(OutputSurface* client)
88 OutputSurface* client_;
91 OutputSurface::OutputSurface(
106 OutputSurface::OutputSurface(
121 OutputSurface::OutputSurface(
138 void OutputSurface::InitializeBeginFrameEmulation(
162 void OutputSurface::SetMaxFramesPending(int max_frames_pending)
    [all...]
delegating_renderer.h 15 class OutputSurface;
22 OutputSurface* output_surface,
52 OutputSurface* output_surface,
56 OutputSurface* output_surface_;
output_surface.h 43 class CC_EXPORT OutputSurface : public FrameRateControllerClient {
49 explicit OutputSurface(scoped_ptr<WebKit::WebGraphicsContext3D> context3d);
51 explicit OutputSurface(scoped_ptr<cc::SoftwareOutputDevice> software_device);
53 OutputSurface(scoped_ptr<WebKit::WebGraphicsContext3D> context3d,
56 virtual ~OutputSurface();
142 struct cc::OutputSurface::Capabilities capabilities_;
150 base::WeakPtrFactory<OutputSurface> weak_ptr_factory_;
164 // Forwarded to OutputSurfaceClient but threaded through OutputSurface
165 // first so OutputSurface has a chance to update the FrameRateController
200 DISALLOW_COPY_AND_ASSIGN(OutputSurface);
    [all...]
software_renderer.h 15 class OutputSurface;
32 OutputSurface* output_surface,
70 OutputSurface* output_surface,
output_surface_unittest.cc 24 class TestOutputSurface : public OutputSurface {
27 : OutputSurface(context3d.Pass()) {}
31 : OutputSurface(software_device.Pass()) {}
35 : OutputSurface(context3d.Pass(), software_device.Pass()) {}
43 using OutputSurface::ReleaseGL;
55 OutputSurface::BeginFrame(BeginFrameArgs::CreateExpiredForTesting());
  /external/chromium_org/cc/test/
pixel_test_output_surface.h 12 class PixelTestOutputSurface : public OutputSurface {
16 : OutputSurface(context3d.Pass()) {}
19 : OutputSurface(software_device.Pass()) {}
fake_layer_tree_host_client.cc 20 scoped_ptr<OutputSurface> FakeLayerTreeHostClient::CreateOutputSurface(
25 make_scoped_ptr(new SoftwareOutputDevice)).PassAs<OutputSurface>();
29 make_scoped_ptr(new SoftwareOutputDevice)).PassAs<OutputSurface>();
33 return FakeOutputSurface::CreateDelegating3d().PassAs<OutputSurface>();
fake_output_surface.cc 18 : OutputSurface(context3d.Pass()),
32 : OutputSurface(software_device.Pass()),
47 : OutputSurface(context3d.Pass(), software_device.Pass()),
76 OutputSurface::SwapBuffers(frame);
84 OutputSurface::SetNeedsBeginFrame(enable);
97 OutputSurface::BeginFrame(BeginFrameArgs::CreateForTesting());
106 if (OutputSurface::BindToClient(client)) {
pixel_test_output_surface.cc 15 OutputSurface::Reshape(expanded_size, scale_factor);
pixel_test.h 20 class OutputSurface;
40 scoped_ptr<OutputSurface> output_surface_;
80 OutputSurface* output_surface,
94 OutputSurface* output_surface,
106 OutputSurface* output_surface,
fake_output_surface.h 19 class FakeOutputSurface : public OutputSurface {
94 using OutputSurface::ReleaseGL;
129 static inline scoped_ptr<cc::OutputSurface> CreateFakeOutputSurface() {
130 return FakeOutputSurface::Create3d().PassAs<cc::OutputSurface>();
fake_layer_tree_host_client.h 34 virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback) OVERRIDE;
fake_proxy.h 39 virtual void Start(scoped_ptr<OutputSurface> first_output_surface) OVERRIDE {}
  /external/chromium_org/cc/trees/
layer_tree_host_client.h 18 class OutputSurface;
30 // Creates an OutputSurface. If fallback is true, it should attempt to
31 // create an OutputSurface that is guaranteed to initialize correctly.
32 virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback) = 0;
proxy.h 27 class OutputSurface;
85 virtual void Start(scoped_ptr<OutputSurface> first_output_surface) = 0;
  /external/chromium_org/content/renderer/android/
synchronous_compositor_factory.h 17 class OutputSurface;
38 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
  /external/chromium_org/content/browser/aura/
software_browser_compositor_output_surface.cc 17 : cc::OutputSurface(software_device.Pass()) {}
software_browser_compositor_output_surface.h 16 class SoftwareBrowserCompositorOutputSurface : public cc::OutputSurface {
browser_compositor_output_surface.cc 26 : OutputSurface(context.Pass()),
56 if (!OutputSurface::BindToClient(client))
65 OutputSurface::Reshape(size, scale_factor);
89 OutputSurface::SwapBuffers(frame);
browser_compositor_output_surface.h 21 // cc::OutputSurface that also handles vsync parameter updates
24 : public cc::OutputSurface,
36 // cc::OutputSurface implementation.
  /external/chromium_org/cc/resources/
scoped_resource_unittest.cc 17 scoped_ptr<OutputSurface> context(CreateFakeOutputSurface());
32 scoped_ptr<OutputSurface> context(CreateFakeOutputSurface());
50 scoped_ptr<OutputSurface> context(CreateFakeOutputSurface());
79 scoped_ptr<OutputSurface> context(CreateFakeOutputSurface());
  /external/chromium_org/webkit/support/
web_layer_tree_view_impl_for_testing.cc 160 scoped_ptr<cc::OutputSurface>
162 scoped_ptr<cc::OutputSurface> surface;
165 surface.reset(new cc::OutputSurface(context3d.Pass()));
  /external/chromium_org/content/renderer/gpu/
compositor_output_surface.cc 56 : OutputSurface(scoped_ptr<WebKit::WebGraphicsContext3D>(context3D),
92 if (!cc::OutputSurface::BindToClient(client))
123 OutputSurface::SwapBuffers(frame);
150 OutputSurface::SetNeedsBeginFrame(enable);
  /external/chromium_org/content/browser/renderer_host/
compositor_impl_android.cc 49 class DirectOutputSurface : public cc::OutputSurface {
52 : cc::OutputSurface(context3d.Pass()) {
65 class OutputSurfaceWithoutParent : public cc::OutputSurface {
68 : cc::OutputSurface(context3d.Pass()) {
80 OutputSurface::SwapBuffers(frame);
361 scoped_ptr<cc::OutputSurface> CompositorImpl::CreateOutputSurface(
372 return scoped_ptr<cc::OutputSurface>(
376 return make_scoped_ptr(new cc::OutputSurface(context.Pass()));
402 return scoped_ptr<cc::OutputSurface>();
404 return scoped_ptr<cc::OutputSurface>(
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
OutputSurface.java 44 class OutputSurface implements SurfaceTexture.OnFrameAvailableListener {
45 private static final String TAG = "OutputSurface";
61 * Creates an OutputSurface backed by a pbuffer with the specifed dimensions. The new
65 public OutputSurface(int width, int height) {
77 * Creates an OutputSurface using the current EGL context (rather than establishing a
80 public OutputSurface() {
99 // This doesn't work if OutputSurface is created on the thread that CTS started for
105 // this to do anything useful, OutputSurface must be created on a thread without
223 * the OutputSurface object, after the onFrameAvailable callback has signaled that new

Completed in 351 milliseconds

1 2 3 4