aboutsummaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
Diffstat (limited to 'render')
-rw-r--r--render/drm_format_set.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/render/drm_format_set.c b/render/drm_format_set.c
index b09a68a4..cbcc0875 100644
--- a/render/drm_format_set.c
+++ b/render/drm_format_set.c
@@ -1,3 +1,4 @@
+#include <assert.h>
#include <drm_fourcc.h>
#include <stdbool.h>
#include <stdint.h>
@@ -57,6 +58,7 @@ bool wlr_drm_format_set_has(const struct wlr_drm_format_set *set,
bool wlr_drm_format_set_add(struct wlr_drm_format_set *set, uint32_t format,
uint64_t modifier) {
+ assert(format != DRM_FORMAT_INVALID);
struct wlr_drm_format **ptr = format_set_get_ref(set, format);
if (ptr) {