commit | 5629eb167638a9ebfa5059177d227c7ac67db46f | [log] [tgz] |
---|---|---|
author | Mathias Agopian <mathias@google.com> | Thu Apr 15 14:57:39 2010 -0700 |
committer | Mathias Agopian <mathias@google.com> | Thu Apr 15 15:23:25 2010 -0700 |
tree | c5a922a844ec13a0a5c16c639ae0c309be17e8cd | |
parent | 27f962f985eea0157922ebe80c44efbf6889725d [diff] [blame] |
when a zero dimension buffer is allocated, turn the allocation into a 1x1 buffer instead of Nx1 (or 1xN) Change-Id: I27eeb15e83e13002dd9405f4e52b54f7dffc0fe7
diff --git a/include/ui/GraphicBufferAllocator.h b/include/ui/GraphicBufferAllocator.h index 741d763..54b8236 100644 --- a/include/ui/GraphicBufferAllocator.h +++ b/include/ui/GraphicBufferAllocator.h
@@ -73,9 +73,9 @@ struct alloc_rec_t { uint32_t w; uint32_t h; + uint32_t s; PixelFormat format; uint32_t usage; - void* vaddr; size_t size; };