diff options
Diffstat (limited to 'opengl/tests/EGLTest')
-rw-r--r-- | opengl/tests/EGLTest/Android.mk | 3 | ||||
-rw-r--r-- | opengl/tests/EGLTest/EGL_test.cpp | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/opengl/tests/EGLTest/Android.mk b/opengl/tests/EGLTest/Android.mk index d820875..1a9ee5c 100644 --- a/opengl/tests/EGLTest/Android.mk +++ b/opengl/tests/EGLTest/Android.mk @@ -30,6 +30,9 @@ LOCAL_C_INCLUDES := \ frameworks/native/opengl/libs \ frameworks/native/opengl/libs/EGL \ +# gold in binutils 2.22 will warn about the usage of mktemp +LOCAL_LDFLAGS += -Wl,--no-fatal-warnings + include $(BUILD_EXECUTABLE) # Include subdirectory makefiles diff --git a/opengl/tests/EGLTest/EGL_test.cpp b/opengl/tests/EGLTest/EGL_test.cpp index d511cae..c0daba2 100644 --- a/opengl/tests/EGLTest/EGL_test.cpp +++ b/opengl/tests/EGLTest/EGL_test.cpp @@ -19,7 +19,7 @@ #include <utils/String8.h> #include <EGL/egl.h> -#include <gui/SurfaceTextureClient.h> +#include <gui/Surface.h> #include <gui/DummyConsumer.h> @@ -104,7 +104,7 @@ TEST_F(EGLTest, EGLTerminateSucceedsWithRemainingObjects) { // Create a EGLSurface sp<BufferQueue> bq = new BufferQueue(); bq->consumerConnect(new DummyConsumer()); - sp<SurfaceTextureClient> mSTC = new SurfaceTextureClient(static_cast<sp<ISurfaceTexture> >( bq)); + sp<Surface> mSTC = new Surface(static_cast<sp<IGraphicBufferProducer> >( bq)); sp<ANativeWindow> mANW = mSTC; EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config, |