summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2015-04-08 14:37:53 -0400
committerChris Michael <cp.michael@samsung.com>2015-04-08 14:37:53 -0400
commit9ce8a3b4fae58be8bf6c1d9a1bc620979c0881af (patch)
tree344bd78ec275bb56b1a117c1ccd51190ccc92dac
parenteea1f831c2d0ace3b45ed82d5633f48be87065ed (diff)
downloadefl-devs/devilhorns/ecore_drm.tar.gz
evas-drm: Add back in the r, g, b masks for conversiondevs/devilhorns/ecore_drm
Summary: This is a big oopsie !! Should not have been removed during previous commit. @fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
-rw-r--r--src/modules/evas/engines/drm/evas_outbuf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/evas/engines/drm/evas_outbuf.c b/src/modules/evas/engines/drm/evas_outbuf.c
index 4b148afcef..25fab2ce31 100644
--- a/src/modules/evas/engines/drm/evas_outbuf.c
+++ b/src/modules/evas/engines/drm/evas_outbuf.c
@@ -3,6 +3,11 @@
# include "evas_cs2_private.h"
#endif
+/* FIXME: We NEED to get the color map from the VT and use that for the mask */
+#define RED_MASK 0xff0000
+#define GREEN_MASK 0x00ff00
+#define BLUE_MASK 0x0000ff
+
static void
_evas_outbuf_cb_pageflip(void *data)
{