diff options
author | 2011-05-01 11:33:26 -0700 | |
---|---|---|
committer | 2011-05-03 16:40:14 -0700 | |
commit | 697526bc9e44ce61c88614f98387ae8bbf0a187e (patch) | |
tree | 2a928d6e8442d5ec1990d63e6b355b02a54c3bf6 /opengl/libagl/TextureObjectManager.h | |
parent | ec10d231c0eaadbcb143932e5c1bb7c1953125a7 (diff) |
frameworks/base: android_native_buffer_t -> ANativeWindowBuffer
Change-Id: Idc2eabaa805bb6d308ebb315872623f28d428417
Signed-off-by: Iliyan Malchev <malchev@google.com>
Diffstat (limited to 'opengl/libagl/TextureObjectManager.h')
-rw-r--r-- | opengl/libagl/TextureObjectManager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opengl/libagl/TextureObjectManager.h b/opengl/libagl/TextureObjectManager.h index 70e3bef6e7..de9e03eab8 100644 --- a/opengl/libagl/TextureObjectManager.h +++ b/opengl/libagl/TextureObjectManager.h @@ -48,7 +48,7 @@ public: ~EGLTextureObject(); status_t setSurface(GGLSurface const* s); - status_t setImage(android_native_buffer_t* buffer); + status_t setImage(ANativeWindowBuffer* buffer); void setImageBits(void* vaddr) { surface.data = (GGLubyte*)vaddr; } status_t reallocate(GLint level, @@ -80,7 +80,7 @@ public: GLint crop_rect[4]; GLint generate_mipmap; GLint direct; - android_native_buffer_t* buffer; + ANativeWindowBuffer* buffer; }; // ---------------------------------------------------------------------------- |