aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2018-06-25 12:34:39 -0400
committerMarek Olšák <[email protected]>2018-06-29 15:31:49 -0400
commitea8b55b49f2a2dd155fc0acb2fdd92795d5c548f (patch)
tree7939668507ee3fa496f42c8be0431f32f63ae3e5 /src/gallium/drivers/freedreno/a2xx/fd2_screen.c
parent82bf8a6a820bb7dd78dd3e2fa8965329da6f866e (diff)
gallium/util: remove dummy function util_format_is_supported
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a2xx/fd2_screen.c')
-rw-r--r--src/gallium/drivers/freedreno/a2xx/fd2_screen.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_screen.c b/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
index c2a60c683f8..4fdf6914ab2 100644
--- a/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
+++ b/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
@@ -43,8 +43,7 @@ fd2_screen_is_format_supported(struct pipe_screen *pscreen,
unsigned retval = 0;
if ((target >= PIPE_MAX_TEXTURE_TYPES) ||
- (sample_count > 1) || /* TODO add MSAA */
- !util_format_is_supported(format, usage)) {
+ (sample_count > 1)) { /* TODO add MSAA */
DBG("not supported: format=%s, target=%d, sample_count=%d, usage=%x",
util_format_name(format), target, sample_count, usage);
return FALSE;