diff options
author | Mathias Agopian <mathias@google.com> | 2010-04-15 14:57:39 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2010-04-15 15:23:25 -0700 |
commit | 67bbac844d3fda5c693464deddf349b80c5190a0 (patch) | |
tree | fed9489b30dba324237db50733c85f85c7633878 /include/ui | |
parent | ccb87e11da5ff4508ede1e4582a5d617fbe78a97 (diff) | |
download | frameworks_base-67bbac844d3fda5c693464deddf349b80c5190a0.zip frameworks_base-67bbac844d3fda5c693464deddf349b80c5190a0.tar.gz frameworks_base-67bbac844d3fda5c693464deddf349b80c5190a0.tar.bz2 |
when a zero dimension buffer is allocated, turn the allocation into
a 1x1 buffer instead of Nx1 (or 1xN)
Change-Id: I27eeb15e83e13002dd9405f4e52b54f7dffc0fe7
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/GraphicBufferAllocator.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ private: struct alloc_rec_t { uint32_t w; uint32_t h; + uint32_t s; PixelFormat format; uint32_t usage; - void* vaddr; size_t size; }; |