diff options
author | Jason Ekstrand <[email protected]> | 2017-08-16 11:54:11 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-09-14 14:47:39 -0700 |
commit | 8824141b8d48d9120ddbf542d6fb661046c41c62 (patch) | |
tree | 1a66a913fabdc536e3bc96c3b0a88684dcef4ff7 /src/gbm/main | |
parent | 0a25a417ce9b9c7e500baeabade87bd1114ac2a8 (diff) |
gbm: Add a gbm_device_get_format_modifier_plane_count function
This allows the user to query the number of planes required by a given
format+modifier combination without having to create a bo or surface.
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Diffstat (limited to 'src/gbm/main')
-rw-r--r-- | src/gbm/main/gbm.c | 14 | ||||
-rw-r--r-- | src/gbm/main/gbm.h | 5 | ||||
-rw-r--r-- | src/gbm/main/gbmint.h | 3 |
3 files changed, 22 insertions, 0 deletions
diff --git a/src/gbm/main/gbm.c b/src/gbm/main/gbm.c index df61ff67748..0bf2922bacd 100644 --- a/src/gbm/main/gbm.c +++ b/src/gbm/main/gbm.c @@ -85,6 +85,20 @@ gbm_device_is_format_supported(struct gbm_device *gbm, return gbm->is_format_supported(gbm, format, usage); } +/** Get the number of planes that are required for a given format+modifier + * + * \param gbm The gbm device returned from gbm_create_device() + * \param format The format to query + * \param modifier The modifier to query + */ +GBM_EXPORT int +gbm_device_get_format_modifier_plane_count(struct gbm_device *gbm, + uint32_t format, + uint64_t modifier) +{ + return gbm->get_format_modifier_plane_count(gbm, format, modifier); +} + /** Destroy the gbm device and free all resources associated with it. * * \param gbm The device created using gbm_create_device() diff --git a/src/gbm/main/gbm.h b/src/gbm/main/gbm.h index aed26a01621..7710e61b132 100644 --- a/src/gbm/main/gbm.h +++ b/src/gbm/main/gbm.h @@ -238,6 +238,11 @@ int gbm_device_is_format_supported(struct gbm_device *gbm, uint32_t format, uint32_t usage); +int +gbm_device_get_format_modifier_plane_count(struct gbm_device *gbm, + uint32_t format, + uint64_t modifier); + void gbm_device_destroy(struct gbm_device *gbm); diff --git a/src/gbm/main/gbmint.h b/src/gbm/main/gbmint.h index c27a7a560ae..9220a4ae87d 100644 --- a/src/gbm/main/gbmint.h +++ b/src/gbm/main/gbmint.h @@ -61,6 +61,9 @@ struct gbm_device { int (*is_format_supported)(struct gbm_device *gbm, uint32_t format, uint32_t usage); + int (*get_format_modifier_plane_count)(struct gbm_device *device, + uint32_t format, + uint64_t modifier); struct gbm_bo *(*bo_create)(struct gbm_device *gbm, uint32_t width, uint32_t height, |