gralloc_module_t 结构体参考文档

gralloc_module_t 结构体参考文档

#include < gralloc.h >

数据字段

struct hw_module_t   常见
 
int(*  registerBuffer )(struct gralloc_module_t const *module, buffer_handle_t handle)
 
int(*  unregisterBuffer )(struct gralloc_module_t const *module, buffer_handle_t handle)
 
int(*  lock )(struct gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, int t, int w, int h, void **vaddr)
 
int(*  unlock )(struct gralloc_module_t const *module, buffer_handle_t handle)
 
int(*  perform )(struct gralloc_module_t const *module, int operation,...)
 
int(*  lock_ycbcr )(struct gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, int t, int w, int h, struct android_ycbcr *ycbcr)
 
int(*  lockAsync )(struct gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, int t, int w, int h, void **vaddr, int fenceFd)
 
int(*  unlockAsync )(struct gralloc_module_t const *module, buffer_handle_t handle, int *fenceFd)
 
int(*  lockAsync_ycbcr )(struct gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, int t, int w, int h, struct android_ycbcr *ycbcr, int fenceFd)
 
void *  reserved_proc [3]
 

详细说明

每个硬件模块都必须有一个名为 HAL_MODULE_INFO_SYM 的数据结构,并且此数据结构的字段必须以 hw_module_t 开头,后跟模块专用信息。

定义位于文件 gralloc.h 的第 155 行

字段文档

struct hw_module_t common

定义位于文件 gralloc.h 156 行。

int(* lock)(struct gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, int t, int w, int h, void **vaddr)

定义位于文件 gralloc.h 226 行。

int(* lock_ycbcr)(struct gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, int t, int w, int h, struct android_ycbcr *ycbcr)

定义位于文件 gralloc.h 265 行。

int(* lockAsync)(struct gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, int t, int w, int h, void **vaddr, int fenceFd)

定义位于文件 gralloc.h 280 行。

int(* lockAsync_ycbcr)(struct gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, int t, int w, int h, struct android_ycbcr *ycbcr, int fenceFd)

定义位于文件 gralloc.h 310 行。

int(* perform)(struct gralloc_module_t const *module, int operation,...)

定义位于文件 gralloc.h 242 行。

int(* registerBuffer)(struct gralloc_module_t const *module, buffer_handle_t handle)

定义位于文件 gralloc.h 173 行。

void* reserved_proc[3]

定义位于文件 gralloc.h 的第 316 行。

int(* unlock)(struct gralloc_module_t const *module, buffer_handle_t handle)

定义位于文件 gralloc.h 237 行。

int(* unlockAsync)(struct gralloc_module_t const *module, buffer_handle_t handle, int *fenceFd)

定义位于文件 gralloc.h 296 行。

int(* unregisterBuffer)(struct gralloc_module_t const *module, buffer_handle_t handle)

定义位于文件 gralloc.h 188 行。


此结构体的文档是根据以下文件生成的: