OSDN Git Service

libEGL: allow devices to workaround Google bug 10194508
authorPawit Pornkitprasan <p.pawit@gmail.com>
Sun, 3 Nov 2013 06:02:15 +0000 (23:02 -0700)
committerGerrit Code Review <gerrit@cyanogenmod.org>
Fri, 16 Oct 2015 21:45:10 +0000 (14:45 -0700)
Most older blobs don't have the EGL_KHR_gl_colorspace
extension and need this workaround.

Change-Id: Ifc5d097c1a0b68275d23c2d191976ac96631b695

opengl/libs/Android.mk

index 661b99c..e952a38 100644 (file)
@@ -50,6 +50,9 @@ endif
 ifeq ($(TARGET_BOARD_PLATFORM), omap4)
   LOCAL_CFLAGS += -DWORKAROUND_BUG_10194508=1
 endif
+ifeq ($(BOARD_EGL_WORKAROUND_BUG_10194508),true)
+  LOCAL_CFLAGS += -DWORKAROUND_BUG_10194508=1
+endif
 ifneq ($(MAX_EGL_CACHE_ENTRY_SIZE),)
   LOCAL_CFLAGS += -DMAX_EGL_CACHE_ENTRY_SIZE=$(MAX_EGL_CACHE_ENTRY_SIZE)
 endif