HomeSort by relevance Sort by last modified time
    Searched defs:Compositor (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/content/public/browser/android/
compositor.h 30 // An interface to the browser-side compositor.
31 class CONTENT_EXPORT Compositor {
33 virtual ~Compositor() {}
35 // Performs the global initialization needed before any compositor
39 // Creates and returns a compositor instance. |root_window| needs to outlive
40 // the compositor as it manages callbacks on the compositor.
41 static Compositor* Create(CompositorClient* client,
54 // freed and other calls into the compositor are not allowed until after
58 // Set the output surface handle which the compositor renders into
    [all...]
  /external/chromium_org/ppapi/cpp/
compositor.h 14 /// This file defines the API to create a compositor in the browser.
17 /// The <code>Compositor</code> interface is used for setting
18 /// <code>CompositorLayer</code> layers to the Chromium compositor for
22 class Compositor : public Resource {
25 /// <code>Compositor</code> object.
26 Compositor();
28 /// A constructor for creating and initializing a compositor.
31 explicit Compositor(const InstanceHandle& instance);
33 /// The copy constructor for <code>Compositor</code>.
35 /// @param[in] other A reference to a <code>Compositor</code>
    [all...]
compositor.cc 5 #include "ppapi/cpp/compositor.h"
22 Compositor::Compositor() {
25 Compositor::Compositor(const InstanceHandle& instance) {
32 Compositor::Compositor(
33 const Compositor& other) : Resource(other) {
36 Compositor::Compositor(const Resource& resource
    [all...]
  /external/chromium_org/ui/compositor/
compositor.cc 5 #include "ui/compositor/compositor.h"
24 #include "ui/compositor/compositor_observer.h"
25 #include "ui/compositor/compositor_switches.h"
26 #include "ui/compositor/compositor_vsync_manager.h"
27 #include "ui/compositor/dip_util.h"
28 #include "ui/compositor/layer.h"
29 #include "ui/compositor/layer_animator_collection.h"
45 CompositorLock::CompositorLock(Compositor* compositor)
    [all...]
compositor.h 18 #include "ui/compositor/compositor_export.h"
19 #include "ui/compositor/compositor_observer.h"
20 #include "ui/compositor/layer_animator_collection.h"
51 class Compositor;
58 // This class abstracts the creation of the 3D context for the compositor. It is
64 // Creates an output surface for the given compositor. The factory may keep
65 // per-compositor data (e.g. a shared context), that needs to be cleaned up
66 // by calling RemoveCompositor when the compositor gets destroyed.
68 Compositor* compositor, bool software_fallback) = 0
    [all...]

Completed in 152 milliseconds