diff options
Diffstat (limited to 'src/gallium/drivers/swr/swr_screen.h')
-rw-r--r-- | src/gallium/drivers/swr/swr_screen.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/drivers/swr/swr_screen.h b/src/gallium/drivers/swr/swr_screen.h index 0c82a2eff7a..dc1bb47f02d 100644 --- a/src/gallium/drivers/swr/swr_screen.h +++ b/src/gallium/drivers/swr/swr_screen.h @@ -24,10 +24,15 @@ #ifndef SWR_SCREEN_H #define SWR_SCREEN_H +#include "swr_resource.h" + #include "pipe/p_screen.h" #include "pipe/p_defines.h" +#include "util/u_format.h" #include "api.h" +#include "memory/TilingFunctions.h" + struct sw_winsys; struct swr_screen { @@ -38,6 +43,9 @@ struct swr_screen { struct sw_winsys *winsys; + boolean msaa_force_enable; + uint8_t msaa_max_count; + HANDLE hJitMgr; }; |