diff options
author | Eric Anholt <[email protected]> | 2018-02-22 17:38:50 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-02-23 08:42:13 -0800 |
commit | 978b884afc1ab07f3c74e0f11a55cde86baa79b1 (patch) | |
tree | 92d7045704200ce2bf0a53aec658ee215d45a12b /src/gallium/drivers/vc4 | |
parent | 8df11f3fad52507266ca1e97149fd4175ad05471 (diff) |
broadcom/vc4: Ignore PIPE_BIND_DISPLAY_TARGET in is_format_supported().
We were failing the retval == usage check at the end.
Fixes: f7604d8af521 ("st/dri: only expose config formats that are display targets")
Diffstat (limited to 'src/gallium/drivers/vc4')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_screen.c b/src/gallium/drivers/vc4/vc4_screen.c index e341211f5bd..5339864f7f8 100644 --- a/src/gallium/drivers/vc4/vc4_screen.c +++ b/src/gallium/drivers/vc4/vc4_screen.c @@ -550,6 +550,8 @@ vc4_screen_is_format_supported(struct pipe_screen *pscreen, retval |= PIPE_BIND_INDEX_BUFFER; } + retval |= usage & PIPE_BIND_DISPLAY_TARGET; + #if 0 if (retval != usage) { fprintf(stderr, |