mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 16:30:10 +01:00
svga: fix use of SVGA3D_x vs. PIPE_FORMAT_x in svga_is_format_supported()
Two of the switch cases used PIPE_FORMAT_ tokens instead of SVGA3D_ tokens. As it happens, the token values are equal for these formats so there's no net change. Reviewed-by: José Fonseca <jfonseca@vmware.com> Reviewed-by: Jakob Bornecrantz <jakob@vmware.com>
This commit is contained in:
parent
590321c39d
commit
e0095548c0
1 changed files with 2 additions and 2 deletions
|
|
@ -358,8 +358,8 @@ svga_is_format_supported( struct pipe_screen *screen,
|
|||
/* Often unsupported/problematic. This means we end up with the same
|
||||
* visuals for all virtual hardware implementations.
|
||||
*/
|
||||
case PIPE_FORMAT_B4G4R4A4_UNORM:
|
||||
case PIPE_FORMAT_B5G5R5A1_UNORM:
|
||||
case SVGA3D_A4R4G4B4:
|
||||
case SVGA3D_A1R5G5B5:
|
||||
return FALSE;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue