summaryrefslogtreecommitdiffstats
path: root/include/hal_public.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/hal_public.h')
-rw-r--r--include/hal_public.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/hal_public.h b/include/hal_public.h
index 9764ee8..60f33a9 100644
--- a/include/hal_public.h
+++ b/include/hal_public.h
@@ -129,6 +129,14 @@ typedef struct IMG_gralloc_module_public_t
int (*GetPhyAddrs)(struct IMG_gralloc_module_public_t const* module,
buffer_handle_t handle,
unsigned int auiPhyAddr[MAX_SUB_ALLOCS]);
+ /* Custom-blit components in lieu of overlay hardware */
+ int (*Blit)(struct IMG_gralloc_module_public_t const *module,
+ buffer_handle_t src,
+ void *dest[MAX_SUB_ALLOCS], int format);
+
+ int (*Blit2)(struct IMG_gralloc_module_public_t const *module,
+ buffer_handle_t src, buffer_handle_t dest,
+ int w, int h, int x, int y);
}
IMG_gralloc_module_public_t;