Lines Matching refs:plane
184 /** Get the stride for the given plane
187 * \param plane for which you want the stride
192 gbm_bo_get_stride_for_plane(struct gbm_bo *bo, int plane)
194 return bo->gbm->v0.bo_get_stride(bo, plane);
284 /** Get the offset for the data of the specified plane
286 * Extra planes, and even the first plane, may have an offset from the start of
287 * the buffer object. This function will provide the offset for the given plane
294 gbm_bo_get_offset(struct gbm_bo *bo, int plane)
296 return bo->gbm->v0.bo_get_offset(bo, plane);
352 /** Get the handle for the specified plane of the buffer object
354 * This function gets the handle for any plane associated with the BO. When
360 * \param plane the plane to get a handle for
365 gbm_bo_get_handle_for_plane(struct gbm_bo *bo, int plane)
367 return bo->gbm->v0.bo_get_handle(bo, plane);
370 /** Get a DMA-BUF file descriptor for the specified plane of the buffer object
373 * handle for the specified plane of the buffer object. Each call to
378 * \param plane The plane to get a DMA-BUF for
385 gbm_bo_get_fd_for_plane(struct gbm_bo *bo, int plane)
387 return bo->gbm->v0.bo_get_plane_fd(bo, plane);