summaryrefslogtreecommitdiffstats
path: root/libs/surfaceflinger/Android.mk
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-06-18 18:48:39 -0700
committerMathias Agopian <mathias@google.com>2009-06-18 18:48:39 -0700
commit9cc88529e4cbf54df3eed968666472d3fa658d13 (patch)
treeffa17c58d80a5604dea2438658348ef405d06316 /libs/surfaceflinger/Android.mk
parent42bf621e801183028066e6947fdd22eae8693a02 (diff)
downloadframeworks_base-9cc88529e4cbf54df3eed968666472d3fa658d13.zip
frameworks_base-9cc88529e4cbf54df3eed968666472d3fa658d13.tar.gz
frameworks_base-9cc88529e4cbf54df3eed968666472d3fa658d13.tar.bz2
implement dimming with a texture on msm7k so it uses copybit
Diffstat (limited to 'libs/surfaceflinger/Android.mk')
-rw-r--r--libs/surfaceflinger/Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/surfaceflinger/Android.mk b/libs/surfaceflinger/Android.mk
index 16936e3..29b88e9 100644
--- a/libs/surfaceflinger/Android.mk
+++ b/libs/surfaceflinger/Android.mk
@@ -21,6 +21,10 @@ LOCAL_SRC_FILES:= \
LOCAL_CFLAGS:= -DLOG_TAG=\"SurfaceFlinger\"
LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
+ifeq ($(TARGET_BOARD_PLATFORM), msm7k)
+ LOCAL_CFLAGS += -DDIM_WITH_TEXTURE
+endif
+
# need "-lrt" on Linux simulator to pick up clock_gettime
ifeq ($(TARGET_SIMULATOR),true)
ifeq ($(HOST_OS),linux)