swr: Removed unnecessary PIPE_BIND flags from swr_is_format_supported
authorBruce Cherniak <bruce.cherniak@intel.com>
Wed, 12 Apr 2017 23:53:01 +0000 (18:53 -0500)
committerTim Rowley <timothy.o.rowley@intel.com>
Fri, 14 Apr 2017 20:22:44 +0000 (15:22 -0500)
Removed unnecessary and probably wrong PIPE_BIND_SCANOUT and PIPE_BIND_SHARED
flags in favor of check on single PIPE_BIND_DISPLAY_TARGET flag.

Reference llvmpipe change <bee4c7718a3bd57e3d99f0913d9081cd13fe5fd>

Reviewed-by: Tim Rowley <timothy.o.rowley@intel.com>
src/gallium/drivers/swr/swr_screen.cpp

index 3d3d1034150687c1a4ce10e526da748957d1936c..87fd898eb11fa3a76244a04403ea5d873024b7da 100644 (file)
@@ -103,8 +103,7 @@ swr_is_format_supported(struct pipe_screen *screen,
    if (sample_count > 1)
       return FALSE;
 
-   if (bind
-       & (PIPE_BIND_DISPLAY_TARGET | PIPE_BIND_SCANOUT | PIPE_BIND_SHARED)) {
+   if (bind & PIPE_BIND_DISPLAY_TARGET) {
       if (!winsys->is_displaytarget_format_supported(winsys, bind, format))
          return FALSE;
    }