mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 07:08:04 +02:00
Revert "r600g: don't advertise integer textures without GLSL 1.3"
This reverts commit 2c06bcb909.
It breaks u_blitter trying to blit compressed textures as uint.
This commit is contained in:
parent
2c06bcb909
commit
39b0da9f8d
2 changed files with 0 additions and 8 deletions
|
|
@ -708,10 +708,6 @@ boolean evergreen_is_format_supported(struct pipe_screen *screen,
|
|||
if (!util_format_is_supported(format, usage))
|
||||
return FALSE;
|
||||
|
||||
if (util_format_is_pure_integer(format) &&
|
||||
screen->get_param(screen, PIPE_CAP_GLSL_FEATURE_LEVEL) < 130)
|
||||
return FALSE;
|
||||
|
||||
/* Multisample */
|
||||
if (sample_count > 1)
|
||||
return FALSE;
|
||||
|
|
|
|||
|
|
@ -660,10 +660,6 @@ boolean r600_is_format_supported(struct pipe_screen *screen,
|
|||
if (!util_format_is_supported(format, usage))
|
||||
return FALSE;
|
||||
|
||||
if (util_format_is_pure_integer(format) &&
|
||||
screen->get_param(screen, PIPE_CAP_GLSL_FEATURE_LEVEL) < 130)
|
||||
return FALSE;
|
||||
|
||||
/* Multisample */
|
||||
if (sample_count > 1)
|
||||
return FALSE;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue