diff options
author | Mathias Agopian <mathias@google.com> | 2013-07-31 20:09:53 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2013-08-01 17:20:08 -0700 |
commit | a4e19521ac4563f2ff6517bcfd63d9b8d33a6d0b (patch) | |
tree | 2ea2866fb6b49eabdc207bb42715665df2c94799 /opengl | |
parent | ba93b3f8e403636b614a4a379f9421bc70dca84f (diff) | |
download | frameworks_native-a4e19521ac4563f2ff6517bcfd63d9b8d33a6d0b.zip frameworks_native-a4e19521ac4563f2ff6517bcfd63d9b8d33a6d0b.tar.gz frameworks_native-a4e19521ac4563f2ff6517bcfd63d9b8d33a6d0b.tar.bz2 |
Binderize the consumer side of BufferQueue
While currently untested, this should allow to move the
BuffereQueue in the consumer process and have everything
work as usual.
Bug: 9265647
Change-Id: I9ca8f099f7c65b9a27b7e7a3643b46d1b58eacfc
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() {} }; |