aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2017-08-25 14:34:08 +0000
committerIlia Mirkin <[email protected]>2017-10-15 12:09:14 -0400
commitd3af7f51531a8763fc2760c52869864f2822c7c3 (patch)
treed445fcb6b0d64cd9a34eae6b3446e1e4d61914b3 /src/gallium/drivers/freedreno
parentc10eeb454d4dbbdaebd3b6b6ef039262c3831d44 (diff)
freedreno/a20x: Enable rendering to RGBA/RGBX
Signed-off-by: Wladimir J. van der Laan <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno')
-rw-r--r--src/gallium/drivers/freedreno/a2xx/fd2_screen.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_screen.c b/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
index 12ab5b41089..2fd479483e2 100644
--- a/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
+++ b/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
@@ -53,7 +53,9 @@ fd2_screen_is_format_supported(struct pipe_screen *pscreen,
/* TODO figure out how to render to other formats.. */
if ((usage & PIPE_BIND_RENDER_TARGET) &&
((format != PIPE_FORMAT_B8G8R8A8_UNORM) &&
- (format != PIPE_FORMAT_B8G8R8X8_UNORM))) {
+ (format != PIPE_FORMAT_B8G8R8X8_UNORM) &&
+ (format != PIPE_FORMAT_R8G8B8A8_UNORM) &&
+ (format != PIPE_FORMAT_R8G8B8X8_UNORM))) {
DBG("not supported render target: format=%s, target=%d, sample_count=%d, usage=%x",
util_format_name(format), target, sample_count, usage);
return FALSE;