diff options
author | 2019-01-31 14:23:43 -0800 | |
---|---|---|
committer | 2019-02-01 09:59:38 -0800 | |
commit | 250c654efecb084f5da8157eae2e210a4eddf19f (patch) | |
tree | 6859d5ee4bb2a46f6c27247caf25544379298b4a /libs/ui/Gralloc3.cpp | |
parent | 4701f467ea47478ee26b7a7caf997a36bab54143 (diff) |
Adding optional 3.0 lock support to GraphicBuffer
Adding optional 3.0 lock parameters to GraphicBuffer
Modifying isSupported to isLoaded
Bug: 123423521
Test: build, boot
Change-Id: If4a92bd7916072c2cd7005ca6f332f4a90098d27
Diffstat (limited to 'libs/ui/Gralloc3.cpp')
-rw-r--r-- | libs/ui/Gralloc3.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ui/Gralloc3.cpp b/libs/ui/Gralloc3.cpp index acb6b01188..306a74b80c 100644 --- a/libs/ui/Gralloc3.cpp +++ b/libs/ui/Gralloc3.cpp @@ -92,7 +92,7 @@ Gralloc3Mapper::Gralloc3Mapper() { } } -bool Gralloc3Mapper::isSupported() const { +bool Gralloc3Mapper::isLoaded() const { return mMapper != nullptr; } @@ -322,7 +322,7 @@ Gralloc3Allocator::Gralloc3Allocator(const Gralloc3Mapper& mapper) : mMapper(map } } -bool Gralloc3Allocator::isSupported() const { +bool Gralloc3Allocator::isLoaded() const { return mAllocator != nullptr; } |