X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fdrivers%2Fsoftpipe%2Fsp_screen.h;h=007feecb5de77bf9bcafe05bd396411b261b8822;hb=07f5dabc01e9a85073ffd333c37549ec5ae75c7a;hp=3d4bfd3e840b9c2909bfa01ca4c3ecde5f318bde;hpb=ffe78987dc01864cdb8f8b74855c3e14cff1c0bb;p=mesa.git diff --git a/src/gallium/drivers/softpipe/sp_screen.h b/src/gallium/drivers/softpipe/sp_screen.h index 3d4bfd3e840..007feecb5de 100644 --- a/src/gallium/drivers/softpipe/sp_screen.h +++ b/src/gallium/drivers/softpipe/sp_screen.h @@ -35,19 +35,20 @@ #include "pipe/p_defines.h" +struct sw_winsys; struct softpipe_screen { struct pipe_screen base; + struct sw_winsys *winsys; + /* Increments whenever textures are modified. Contexts can track * this. */ - unsigned timestamp; + unsigned timestamp; + boolean use_llvm; }; - - - static INLINE struct softpipe_screen * softpipe_screen( struct pipe_screen *pipe ) { @@ -55,4 +56,5 @@ softpipe_screen( struct pipe_screen *pipe ) } + #endif /* SP_SCREEN_H */