diff options
author | Grazvydas Ignotas <[email protected]> | 2017-02-11 01:01:40 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-02-21 00:37:02 +0100 |
commit | 66d1cb587ac7b24fb04f26d30e686c3991fc8885 (patch) | |
tree | cf654a616ff01a57edf0343be96203f6a10cbff8 /src | |
parent | 87687afb943d26c1c82ff88b22e1d05fc3c6ed04 (diff) |
r300g: only allow byteswapped formats on big endian
They cause regressions on little endian.
Fixes: 172bfdaa9e ("r300g: add support for PIPE_FORMAT_x8R8G8B8_*")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=98869
Signed-off-by: Grazvydas Ignotas <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c index fbac07a79a4..929c3fe6c12 100644 --- a/src/gallium/drivers/r300/r300_texture.c +++ b/src/gallium/drivers/r300/r300_texture.c @@ -47,6 +47,11 @@ */ static enum pipe_format r300_unbyteswap_array_format(enum pipe_format format) { + /* FIXME: Disabled on little endian because of a reported regression: + * https://bugs.freedesktop.org/show_bug.cgi?id=98869 */ + if (PIPE_ENDIAN_NATIVE != PIPE_ENDIAN_BIG) + return format; + /* Only BGRA 8888 array formats are supported for simplicity of * the implementation. */ switch (format) { |