From 250c654efecb084f5da8157eae2e210a4eddf19f Mon Sep 17 00:00:00 2001 From: Valerie Hau Date: Thu, 31 Jan 2019 14:23:43 -0800 Subject: 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 --- libs/ui/Gralloc2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ui/Gralloc2.cpp') diff --git a/libs/ui/Gralloc2.cpp b/libs/ui/Gralloc2.cpp index 2c4b5f32b1..92ea07cbc4 100644 --- a/libs/ui/Gralloc2.cpp +++ b/libs/ui/Gralloc2.cpp @@ -94,7 +94,7 @@ Gralloc2Mapper::Gralloc2Mapper() { mMapperV2_1 = IMapper::castFrom(mMapper); } -bool Gralloc2Mapper::isSupported() const { +bool Gralloc2Mapper::isLoaded() const { return mMapper != nullptr; } @@ -359,7 +359,7 @@ Gralloc2Allocator::Gralloc2Allocator(const Gralloc2Mapper& mapper) : mMapper(map } } -bool Gralloc2Allocator::isSupported() const { +bool Gralloc2Allocator::isLoaded() const { return mAllocator != nullptr; } -- cgit v1.2.3-59-g8ed1b