diff options
author | Kenneth Graunke <[email protected]> | 2018-04-27 00:07:43 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:06 -0800 |
commit | 3650f8dfa1ae70dbbc5da9f93ec1b8bb1a2a7e20 (patch) | |
tree | cd6079266f504b185ed067b28fd0926b2d6ca841 | |
parent | 4510098b9c584be592116fb23627be388bf529f9 (diff) |
iris: properly reject formats, fixes RGB32 rendering with texture float
-rw-r--r-- | src/gallium/drivers/iris/iris_formats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_formats.c b/src/gallium/drivers/iris/iris_formats.c index db532c48172..374b80ce17b 100644 --- a/src/gallium/drivers/iris/iris_formats.c +++ b/src/gallium/drivers/iris/iris_formats.c @@ -476,6 +476,6 @@ iris_is_format_supported(struct pipe_screen *pscreen, // XXX: } - return true; + return supported; } |