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:
Marek Olšák 2012-02-14 15:48:37 +01:00
parent 2c06bcb909
commit 39b0da9f8d
2 changed files with 0 additions and 8 deletions

View file

@ -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;

View file

@ -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;