From ee4e57e94903f497c936aa23e474e26ba74182c5 Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Tue, 15 Dec 2009 17:22:56 -0800 Subject: [PATCH] remove unused code --- modules/gralloc/gralloc_priv.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/modules/gralloc/gralloc_priv.h b/modules/gralloc/gralloc_priv.h index 5d7db26..75bcd1d 100644 --- a/modules/gralloc/gralloc_priv.h +++ b/modules/gralloc/gralloc_priv.h @@ -95,10 +95,6 @@ struct private_handle_t { magic = 0; } - bool usesPhysicallyContiguousMemory() { - return false; - } - static int validate(const native_handle* h) { const private_handle_t* hnd = (const private_handle_t*)h; if (!h || h->version != sizeof(native_handle) || @@ -110,13 +106,6 @@ struct private_handle_t { } return 0; } - - static private_handle_t* dynamicCast(const native_handle* in) { - if (validate(in) == 0) { - return (private_handle_t*) in; - } - return NULL; - } #endif }; -- 2.11.0