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

1 2 3 4 5

  /external/chromium_org/cc/surfaces/
display_client.h 13 class OutputSurface;
17 virtual scoped_ptr<OutputSurface> CreateOutputSurface() = 0;
  /external/chromium_org/cc/output/
overlay_processor.h 15 class OutputSurface;
32 OverlayProcessor(OutputSurface* surface, ResourceProvider* resource_provider);
42 OutputSurface* surface_;
output_surface.cc 43 OutputSurface::OutputSurface(
53 OutputSurface::OutputSurface(scoped_ptr<SoftwareOutputDevice> software_device)
62 OutputSurface::OutputSurface(
74 void OutputSurface::CommitVSyncParameters(base::TimeTicks timebase,
77 "OutputSurface::CommitVSyncParameters",
86 void OutputSurface::SetNeedsRedrawRect(const gfx::Rect& damage_rect) {
87 TRACE_EVENT0("cc", "OutputSurface::SetNeedsRedrawRect")
    [all...]
delegating_renderer.h 15 class OutputSurface;
23 OutputSurface* output_surface,
43 OutputSurface* output_surface,
48 OutputSurface* output_surface_;
output_surface.h 44 class CC_EXPORT OutputSurface {
50 explicit OutputSurface(
53 explicit OutputSurface(scoped_ptr<SoftwareOutputDevice> software_device);
55 OutputSurface(const scoped_refptr<ContextProvider>& context_provider,
58 virtual ~OutputSurface();
151 struct OutputSurface::Capabilities capabilities_;
185 base::WeakPtrFactory<OutputSurface> weak_ptr_factory_;
187 DISALLOW_COPY_AND_ASSIGN(OutputSurface);
renderer_unittest.cc 31 OutputSurface* output_surface,
38 OutputSurface* output_surface,
49 OutputSurface* output_surface,
62 output_surface_.reset(new OutputSurface(context_provider_));
76 scoped_ptr<OutputSurface> output_surface_;
overlay_processor.cc 14 OverlayProcessor::OverlayProcessor(OutputSurface* surface,
software_renderer.h 15 class OutputSurface;
33 OutputSurface* output_surface,
69 OutputSurface* output_surface,
  /external/chromium_org/cc/test/
fake_layer_tree_host_client.cc 26 scoped_ptr<OutputSurface> surface;
31 .PassAs<OutputSurface>();
35 .PassAs<OutputSurface>();
38 surface = FakeOutputSurface::CreateDelegating3d().PassAs<OutputSurface>();
40 surface = FakeOutputSurface::Create3d().PassAs<OutputSurface>();
pixel_test_output_surface.cc 14 : OutputSurface(context_provider), external_stencil_test_(false) {}
18 : OutputSurface(software_device.Pass()), external_stencil_test_(false) {}
24 OutputSurface::Reshape(expanded_size, scale_factor);
fake_output_surface.cc 20 : OutputSurface(context_provider),
35 : OutputSurface(software_device.Pass()),
50 : OutputSurface(context_provider, software_device.Pass()),
79 OutputSurface::SwapBuffers(frame);
87 OutputSurface::SetNeedsBeginFrame(enable);
104 if (OutputSurface::BindToClient(client)) {
pixel_test_output_surface.h 12 class PixelTestOutputSurface : public OutputSurface {
fake_output_surface_client.h 13 class OutputSurface;
24 explicit FakeOutputSurfaceClient(OutputSurface* output_surface)
64 OutputSurface* output_surface_;
pixel_test.h 21 class OutputSurface;
46 scoped_ptr<OutputSurface> output_surface_;
97 OutputSurface* output_surface,
113 OutputSurface* output_surface,
fake_output_surface.h 21 class FakeOutputSurface : public OutputSurface {
102 using OutputSurface::ReleaseGL;
103 using OutputSurface::InitializeAndSetContext3d;
  /external/chromium_org/android_webview/browser/
parent_output_surface.h 12 class ParentOutputSurface : NON_EXPORTED_BASE(public cc::OutputSurface) {
18 // OutputSurface overrides.
21 using cc::OutputSurface::SetExternalStencilTest;
parent_output_surface.cc 14 : cc::OutputSurface(context_provider) {
  /external/chromium_org/content/browser/compositor/
onscreen_display_client.h 28 scoped_ptr<cc::OutputSurface> output_surface,
39 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface() OVERRIDE;
50 scoped_ptr<cc::OutputSurface> output_surface_;
browser_compositor_output_surface.cc 20 : OutputSurface(context_provider),
32 : OutputSurface(software_device.Pass()),
61 if (!OutputSurface::BindToClient(client))
75 cc::OutputSurface::OnSwapBuffersComplete();
101 cc::OutputSurface::OnSwapBuffersComplete();
onscreen_display_client.cc 17 scoped_ptr<cc::OutputSurface> output_surface,
33 scoped_ptr<cc::OutputSurface> OnscreenDisplayClient::CreateOutputSurface() {
  /external/chromium_org/content/renderer/android/
synchronous_compositor_factory.h 18 class OutputSurface;
48 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
  /external/chromium_org/cc/trees/
layer_tree_host_client.h 19 class OutputSurface;
33 // Request an OutputSurface from the client. When the client has one it should
35 // attempt to create an OutputSurface that is guaranteed to initialize
  /external/chromium_org/mojo/cc/
output_surface_mojo.h 22 class OutputSurfaceMojo : public cc::OutputSurface, public SurfaceClient {
32 // cc::OutputSurface implementation.
output_surface_mojo.cc 19 : cc::OutputSurface(context_provider),
35 return cc::OutputSurface::BindToClient(client);
  /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() {
84 public OutputSurface(final SurfaceTexture.OnFrameAvailableListener listener) {
103 // This doesn't work if OutputSurface is created on the thread that CTS started for
109 // this to do anything useful, OutputSurface must be created on a thread without
227 * the OutputSurface object, after the onFrameAvailable callback has signaled that ne
    [all...]

Completed in 1151 milliseconds

1 2 3 4 5