softpipe: use any_swizzle() helper in sp_tex_sample.c
[mesa.git] / src / gallium / drivers / softpipe / sp_screen.h
index 3d4bfd3e840b9c2909bfa01ca4c3ecde5f318bde..007feecb5de77bf9bcafe05bd396411b261b8822 100644 (file)
 #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 */