mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
r300g: accelerate blitting for all 64-bit texture formats
This commit is contained in:
parent
12dc497173
commit
7733bac66c
1 changed files with 3 additions and 0 deletions
|
|
@ -149,6 +149,9 @@ void r300_surface_copy(struct pipe_context* pipe,
|
|||
case 4:
|
||||
new_format = PIPE_FORMAT_B8G8R8A8_UNORM;
|
||||
break;
|
||||
case 8:
|
||||
new_format = PIPE_FORMAT_R16G16B16A16_UNORM;
|
||||
break;
|
||||
default:
|
||||
debug_printf("r300: surface_copy: Unhandled format: %s. Falling back to software.\n"
|
||||
"r300: surface_copy: Software fallback doesn't work for tiled textures.\n",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue