Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Unified Diff: compositor/real_compositor.h

Issue 6793005: Add the xrender backend to the window manager. (Closed) Base URL: ssh://gitrw.chromium.org:9222/window_manager.git@master
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: compositor/real_compositor.h
diff --git a/compositor/real_compositor.h b/compositor/real_compositor.h
index 66756e4fa6f81cb759497783d29b2bdf3521a73b..72ec743d16436ea5e832e3d4c0fd542eb8bf7957 100644
--- a/compositor/real_compositor.h
+++ b/compositor/real_compositor.h
@@ -24,8 +24,10 @@
#include "window_manager/math_types.h"
#include "window_manager/x11/x_types.h"
-#if !(defined(COMPOSITOR_OPENGL) || defined(COMPOSITOR_OPENGLES))
-#error COMPOSITOR_OPENGL or COMPOSITOR_OPENGLES must be defined
+#if !(defined(COMPOSITOR_OPENGL) || defined(COMPOSITOR_OPENGLES)\
+ || defined(COMPOSITOR_XRENDER))
Daniel Erat 2011/04/02 14:54:36 improve indenting? #if !(defined(...) || \
marcheu 2011/04/04 19:55:58 Done.
+#error COMPOSITOR_OPENGL, COMPOSITOR_OPENGLES or\
+ COMPOSITOR_XRENDER must be defined
#endif
namespace window_manager {
@@ -37,6 +39,7 @@ class OpenGlDrawVisitor;
class OpenGlesDrawVisitor;
class TextureData;
class XConnection;
+class XRenderDrawVisitor;
class RealCompositor : public Compositor {
public:
@@ -591,11 +594,11 @@ class RealCompositor : public Compositor {
};
RealCompositor(EventLoop* event_loop,
- XConnection* x_conn,
+ XConnection* x_conn
#if defined(COMPOSITOR_OPENGL)
- GLInterface* gl_interface
+ ,GLInterface* gl_interface
#elif defined(COMPOSITOR_OPENGLES)
- Gles2Interface* gl_interface
+ ,Gles2Interface* gl_interface
#endif
);
~RealCompositor();
@@ -631,6 +634,8 @@ class RealCompositor : public Compositor {
OpenGlDrawVisitor* draw_visitor() { return draw_visitor_.get(); }
#elif defined(COMPOSITOR_OPENGLES)
OpenGlesDrawVisitor* draw_visitor() { return draw_visitor_.get(); }
+#elif defined(COMPOSITOR_XRENDER)
+ XRenderDrawVisitor* draw_visitor() { return draw_visitor_.get(); }
#endif
int actor_count() { return actor_count_; }
bool dirty() const { return dirty_; }
@@ -703,6 +708,8 @@ class RealCompositor : public Compositor {
scoped_ptr<OpenGlDrawVisitor> draw_visitor_;
#elif defined(COMPOSITOR_OPENGLES)
scoped_ptr<OpenGlesDrawVisitor> draw_visitor_;
+#elif defined(COMPOSITOR_XRENDER)
+ scoped_ptr<XRenderDrawVisitor> draw_visitor_;
#endif
// Time that we last drew the scene.

Powered by Google App Engine
This is Rietveld 408576698