Lines Matching refs:gbm_bo

46 struct gbm_bo;
242 struct gbm_bo *gbm_bo_create(struct gbm_device *gbm, uint32_t width, uint32_t height, uint32_t format, uint32_t flags);
244 struct gbm_bo *gbm_bo_create_with_modifiers(struct gbm_device *gbm,
275 struct gbm_bo *bm_bo_import(struct gbm_device *gbm, uint32_t type, void *buffer, uint32_t usage);
304 void *gbm_bo_map(struct gbm_bo *bo,
308 void gbm_bo_unmap(struct gbm_bo *bo, void *map_data);
310 uint32_t gbm_bo_get_width(struct gbm_bo *bo);
312 uint32_t gbm_bo_get_height(struct gbm_bo *bo);
314 uint32_t gbm_bo_get_stride(struct gbm_bo *bo);
316 uint32_t gbm_bo_get_stride_for_plane(struct gbm_bo *bo, int plane);
318 uint32_t gbm_bo_get_format(struct gbm_bo *bo);
320 uint32_t gbm_bo_get_bpp(struct gbm_bo *bo);
322 uint32_t gbm_bo_get_offset(struct gbm_bo *bo, int plane);
324 struct gbm_device *gbm_bo_get_device(struct gbm_bo *bo);
326 union gbm_bo_handle gbm_bo_get_handle(struct gbm_bo *bo);
328 int gbm_bo_get_fd(struct gbm_bo *bo);
330 uint64_t gbm_bo_get_modifier(struct gbm_bo *bo);
332 int gbm_bo_get_plane_count(struct gbm_bo *bo);
334 union gbm_bo_handle gbm_bo_get_handle_for_plane(struct gbm_bo *bo, int plane);
336 int gbm_bo_write(struct gbm_bo *bo, const void *buf, size_t count);
338 void gbm_bo_set_user_data(struct gbm_bo *bo, void *data, void (*destroy_user_data)(struct gbm_bo *, void *));
340 void *gbm_bo_get_user_data(struct gbm_bo *bo);
342 void gbm_bo_destroy(struct gbm_bo *bo);
354 struct gbm_bo *gbm_iSurface_lock_front_buffer(struct gbm_iSurface *iSurface);
356 void gbm_iSurface_release_buffer(struct gbm_iSurface *iSurface, struct gbm_bo *bo);