diff options
author | Mathias Agopian <mathias@google.com> | 2012-02-24 16:42:46 -0800 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2012-02-24 16:42:46 -0800 |
commit | 870b8aa15cb5c722b5d8eb7726eaa5f1a7c23d69 (patch) | |
tree | 61bddf819c5548d72935128bbda6597bb81369d5 /opengl/tests/gl2_basic | |
parent | 1c071f828cc8b13b5b6ecb88930c2bfcaf31575c (diff) | |
download | frameworks_native-870b8aa15cb5c722b5d8eb7726eaa5f1a7c23d69.zip frameworks_native-870b8aa15cb5c722b5d8eb7726eaa5f1a7c23d69.tar.gz frameworks_native-870b8aa15cb5c722b5d8eb7726eaa5f1a7c23d69.tar.bz2 |
remove libui dependency on libEGL
Change-Id: I1194f04085637d5c384e134967249430cc43b6ee
Diffstat (limited to 'opengl/tests/gl2_basic')
-rw-r--r-- | opengl/tests/gl2_basic/Android.mk | 2 | ||||
-rw-r--r-- | opengl/tests/gl2_basic/gl2_basic.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/opengl/tests/gl2_basic/Android.mk b/opengl/tests/gl2_basic/Android.mk index a642eaf..07469a0 100644 --- a/opengl/tests/gl2_basic/Android.mk +++ b/opengl/tests/gl2_basic/Android.mk @@ -10,6 +10,8 @@ LOCAL_SHARED_LIBRARIES := \ libGLESv2 \ libui +LOCAL_C_INCLUDES += frameworks/base/opengl/tests/include + LOCAL_MODULE:= test-opengl-gl2_basic LOCAL_MODULE_TAGS := optional diff --git a/opengl/tests/gl2_basic/gl2_basic.cpp b/opengl/tests/gl2_basic/gl2_basic.cpp index f274c7c..7007871 100644 --- a/opengl/tests/gl2_basic/gl2_basic.cpp +++ b/opengl/tests/gl2_basic/gl2_basic.cpp @@ -27,7 +27,7 @@ #include <utils/Timers.h> #include <ui/FramebufferNativeWindow.h> -#include <ui/EGLUtils.h> +#include "EGLUtils.h" using namespace android; |