diff options
author | Andy McFadden <fadden@android.com> | 2012-12-18 09:49:45 -0800 |
---|---|---|
committer | Andy McFadden <fadden@android.com> | 2012-12-18 13:10:48 -0800 |
commit | 2adaf04fab35cf47c824d74d901b54094e01ccd3 (patch) | |
tree | 1201bd220bfea6d308a119e6a986d783e548a10a /opengl/tests/EGLTest/EGL_test.cpp | |
parent | f7baee731e81bfa7f7ccf2e0e03560f5073bc431 (diff) | |
download | frameworks_native-2adaf04fab35cf47c824d74d901b54094e01ccd3.zip frameworks_native-2adaf04fab35cf47c824d74d901b54094e01ccd3.tar.gz frameworks_native-2adaf04fab35cf47c824d74d901b54094e01ccd3.tar.bz2 |
Rename ISurfaceTexture and SurfaceTexture
The C++ class names don't match what the classes do, so rename
ISurfaceTexture to IGraphicBufferProducer, and SurfaceTexture to
GLConsumer.
Bug 7736700
Change-Id: Ia03e468888025b5cae3c0ee1995434515dbea387
Diffstat (limited to 'opengl/tests/EGLTest/EGL_test.cpp')
-rw-r--r-- | opengl/tests/EGLTest/EGL_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/tests/EGLTest/EGL_test.cpp b/opengl/tests/EGLTest/EGL_test.cpp index d511cae..ec433fb 100644 --- a/opengl/tests/EGLTest/EGL_test.cpp +++ b/opengl/tests/EGLTest/EGL_test.cpp @@ -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<SurfaceTextureClient> mSTC = new SurfaceTextureClient(static_cast<sp<IGraphicBufferProducer> >( bq)); sp<ANativeWindow> mANW = mSTC; EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config, |