gallium/util: remove dummy function util_format_is_supported
[mesa.git] / src / gallium / drivers / freedreno / a2xx / fd2_screen.c
index c2a60c683f86f4f34b021c9f8323c6b44bfbe74d..4fdf6914ab264b0c0a4ad287f5baea0ca2b3755c 100644 (file)
@@ -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;