swr: automake: silence the python invocation
[mesa.git] / src / gallium / drivers / freedreno / freedreno_screen.h
index 4e5c3a619580bb2143648d7421f9505fef14bd20..a81c77863902c8e051a036e0eb9c8f87cfb02967 100644 (file)
@@ -42,10 +42,21 @@ struct fd_bo;
 struct fd_screen {
        struct pipe_screen base;
 
+       /* it would be tempting to use pipe_reference here, but that
+        * really doesn't work well if it isn't the first member of
+        * the struct, so not quite so awesome to be adding refcnting
+        * further down the inheritance hierarchy:
+        */
+       int refcnt;
+
+       /* place for winsys to stash it's own stuff: */
+       void *winsys_priv;
+
        uint32_t gmemsize_bytes;
        uint32_t device_id;
        uint32_t gpu_id;         /* 220, 305, etc */
        uint32_t chip_id;        /* coreid:8 majorrev:8 minorrev:8 patch:8 */
+       uint32_t max_freq;
        uint32_t max_rts;        /* max # of render targets */
 
        void *compiler;          /* currently unused for a2xx */