mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
exynos4: gralloc: remove some methods implementation
Change-Id: I57c571fb3c0226e979a6b74c7fef05ac8cf85d8d
This commit is contained in:
parent
88129f0024
commit
727b2b1a82
1 changed files with 0 additions and 26 deletions
|
@ -847,32 +847,6 @@ static int gralloc_perform(struct gralloc_module_t const* module,
|
|||
hnd, *outFormat);
|
||||
} break;
|
||||
|
||||
case GRALLOC1_ADAPTER_PERFORM_GET_PRODUCER_USAGE:
|
||||
{
|
||||
auto hnd = va_arg(args, private_handle_t*);
|
||||
auto outUsage = va_arg(args, uint64_t*);
|
||||
*outUsage = hnd->producer_usage;
|
||||
ALOGV("%s: (%p) GRALLOC1_ADAPTER_PERFORM_GET_PRODUCER_USAGE 0x%08x", __func__,
|
||||
hnd, hnd->producer_usage);
|
||||
} break;
|
||||
case GRALLOC1_ADAPTER_PERFORM_GET_CONSUMER_USAGE:
|
||||
{
|
||||
auto hnd = va_arg(args, private_handle_t*);
|
||||
auto outUsage = va_arg(args, uint64_t*);
|
||||
*outUsage = hnd->consumer_usage;
|
||||
ALOGV("%s: (%p) GRALLOC1_ADAPTER_PERFORM_GET_CONSUMER_USAGE 0x%08x", __func__,
|
||||
hnd, hnd->consumer_usage);
|
||||
} break;
|
||||
|
||||
case GRALLOC1_ADAPTER_PERFORM_GET_BACKING_STORE:
|
||||
{
|
||||
auto hnd = va_arg(args, private_handle_t*);
|
||||
auto outBackingStore = va_arg(args, uint64_t*);
|
||||
*outBackingStore = hnd->backing_store;
|
||||
ALOGV("%s: (%p) GRALLOC1_ADAPTER_PERFORM_GET_BACKING_STORE %llu", __func__,
|
||||
hnd, *outBackingStore);
|
||||
} break;
|
||||
|
||||
case GRALLOC1_ADAPTER_PERFORM_GET_NUM_FLEX_PLANES:
|
||||
{
|
||||
auto hnd = va_arg(args, private_handle_t*);
|
||||
|
|
Loading…
Reference in a new issue