diff options
| author | 2011-05-01 11:33:26 -0700 | |
|---|---|---|
| committer | 2011-05-03 16:40:14 -0700 | |
| commit | b2a153adc9860616acdb96d7cdd64494d5a2a0f2 (patch) | |
| tree | 3e87a5d9681d86ad68c14222774f77bc4bd3ae4a /opengl/libagl/TextureObjectManager.h | |
| parent | be0cc36525f090032d1b84d95e1d8ba5fc714fc2 (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 70e3bef6e774..de9e03eab852 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; }; // ---------------------------------------------------------------------------- |