diff options
author | Mathias Agopian <mathias@google.com> | 2013-08-02 20:35:26 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-08-02 20:35:26 +0000 |
commit | c1c39f8807f5b3dad9ca221d912f7cd4f4f74d9c (patch) | |
tree | 58164c34ad3528aea5bbadc7e1d593277d6cf945 /opengl | |
parent | 86cd09d388d8f6dd52ec1b3e19170966e99caacb (diff) | |
parent | a4e19521ac4563f2ff6517bcfd63d9b8d33a6d0b (diff) | |
download | frameworks_native-c1c39f8807f5b3dad9ca221d912f7cd4f4f74d9c.zip frameworks_native-c1c39f8807f5b3dad9ca221d912f7cd4f4f74d9c.tar.gz frameworks_native-c1c39f8807f5b3dad9ca221d912f7cd4f4f74d9c.tar.bz2 |
Merge "Binderize the consumer side of BufferQueue"
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/tests/EGLTest/Android.mk | 1 | ||||
-rw-r--r-- | opengl/tests/EGLTest/EGL_test.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/opengl/tests/EGLTest/Android.mk b/opengl/tests/EGLTest/Android.mk index 1a9ee5c..f37efec 100644 --- a/opengl/tests/EGLTest/Android.mk +++ b/opengl/tests/EGLTest/Android.mk @@ -13,6 +13,7 @@ LOCAL_SRC_FILES := \ LOCAL_SHARED_LIBRARIES := \ libEGL \ libcutils \ + libbinder \ libstlport \ libutils \ libgui \ diff --git a/opengl/tests/EGLTest/EGL_test.cpp b/opengl/tests/EGLTest/EGL_test.cpp index 86bbb84..f6644fb 100644 --- a/opengl/tests/EGLTest/EGL_test.cpp +++ b/opengl/tests/EGLTest/EGL_test.cpp @@ -100,7 +100,7 @@ TEST_F(EGLTest, EGLTerminateSucceedsWithRemainingObjects) { }; EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs)); - struct DummyConsumer : public BufferQueue::ConsumerListener { + struct DummyConsumer : public BnConsumerListener { virtual void onFrameAvailable() {} virtual void onBuffersReleased() {} }; |