summaryrefslogtreecommitdiff
path: root/opengl/tests
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2017-02-07 17:36:19 -0800
committerMathias Agopian <mathias@google.com>2017-02-07 17:36:19 -0800
commit2b5dd4062dd951b2cafc4b80bd3a1813b013d71a (patch)
tree04c3a4ee5e9ad39515689d0dadbed2370b7c6720 /opengl/tests
parent39fe1d879cc2e55d4d3c3f7445977c674b97c472 (diff)
downloadnative-2b5dd4062dd951b2cafc4b80bd3a1813b013d71a.tar.gz
Fix include dependencies
Some headers included other headers they didn’t need. This is trying to reduce the dependencies of Surface.h / Surface.cpp on the rest of the world. Test: compiled Bug: not applicable Change-Id: Ibb5de1308a387394a1367638c3b7f26b5549ce6a
Diffstat (limited to 'opengl/tests')
-rw-r--r--opengl/tests/EGLTest/EGL_test.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/opengl/tests/EGLTest/EGL_test.cpp b/opengl/tests/EGLTest/EGL_test.cpp
index 2b9c38ea7c..1cd40b3957 100644
--- a/opengl/tests/EGLTest/EGL_test.cpp
+++ b/opengl/tests/EGLTest/EGL_test.cpp
@@ -20,7 +20,10 @@
#include <EGL/egl.h>
#include <gui/Surface.h>
-
+#include <gui/IConsumerListener.h>
+#include <gui/IProducerListener.h>
+#include <gui/IGraphicBufferConsumer.h>
+#include <gui/BufferQueue.h>
namespace android {