diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-29 10:39:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 10:39:54 -0500 |
commit | feb1b9b1cbcf675a4bb449ce30c50522cb8b09f5 (patch) | |
tree | f916d3f043498073b8bd4a2b84777cb2777ae079 /include/backend/drm/util.h | |
parent | 9fe8e379613c42338920e913c6ffd6d1c273da67 (diff) | |
parent | ee293fab58da190943426a6d23380dd04200a4ff (diff) |
Merge pull request #1509 from emersion/gbm-fmt-mismatch
backend/drm: fix GBM format mismatch
Diffstat (limited to 'include/backend/drm/util.h')
-rw-r--r-- | include/backend/drm/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/backend/drm/util.h b/include/backend/drm/util.h index e159d716..2491e703 100644 --- a/include/backend/drm/util.h +++ b/include/backend/drm/util.h @@ -14,7 +14,7 @@ void parse_edid(struct wlr_output *restrict output, size_t len, // Returns the string representation of a DRM output type const char *conn_get_name(uint32_t type_id); // Returns the DRM framebuffer id for a gbm_bo -uint32_t get_fb_for_bo(struct gbm_bo *bo); +uint32_t get_fb_for_bo(struct gbm_bo *bo, uint32_t drm_format); // Part of match_obj enum { |