Skip to content
Snippets Groups Projects
Commit 90207340 authored by Stéphane Marchesin's avatar Stéphane Marchesin
Browse files

i915g: Add back 4444 and 5551 formats


Now that we have the transfers working, we can re-add those formats.

Signed-off-by: default avatarStéphane Marchesin <marcheu@chromium.org>
parent 1e47510d
No related branches found
No related tags found
Loading
......@@ -34,7 +34,5 @@ Random list of problems with i915g:
- Fix fragment discard
- Fix 4444 and 5551 formats
Other bugs can be found here:
https://bugs.freedesktop.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&component=Drivers/Gallium/i915g
......@@ -362,7 +362,9 @@ i915_is_format_supported(struct pipe_screen *screen,
PIPE_FORMAT_B8G8R8X8_UNORM,
PIPE_FORMAT_R8G8B8A8_UNORM,
PIPE_FORMAT_R8G8B8X8_UNORM,
PIPE_FORMAT_B4G4R4A4_UNORM,
PIPE_FORMAT_B5G6R5_UNORM,
PIPE_FORMAT_B5G5R5A1_UNORM,
PIPE_FORMAT_B10G10R10A2_UNORM,
PIPE_FORMAT_L8_UNORM,
PIPE_FORMAT_A8_UNORM,
......@@ -386,6 +388,8 @@ i915_is_format_supported(struct pipe_screen *screen,
PIPE_FORMAT_R8G8B8A8_UNORM,
PIPE_FORMAT_R8G8B8X8_UNORM,
PIPE_FORMAT_B5G6R5_UNORM,
PIPE_FORMAT_B5G5R5A1_UNORM,
PIPE_FORMAT_B4G4R4A4_UNORM,
PIPE_FORMAT_B10G10R10A2_UNORM,
PIPE_FORMAT_L8_UNORM,
PIPE_FORMAT_A8_UNORM,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment