radv: Only save the descriptor set if we have one.
[mesa.git] / src / mesa / drivers / dri / nouveau / nouveau_screen.h
index 5d45039b9ed852ec0de8ce95cd26c9064b8a6152..e3c192802d49b9dba0427e5cbeca13a5c0c92f54 100644 (file)
 #ifndef __NOUVEAU_SCREEN_H__
 #define __NOUVEAU_SCREEN_H__
 
+const __DRIextension **__driDriverGetExtensions_nouveau_vieux(void);
+
 struct nouveau_context;
 
 struct nouveau_screen {
        __DRIscreen *dri_screen;
-
+       struct nouveau_drm *drm;
        struct nouveau_device *device;
-       struct nouveau_channel *chan;
-
-       struct nouveau_notifier *ntfy;
-       struct nouveau_grobj *eng3d;
-       struct nouveau_grobj *eng3dm;
-       struct nouveau_grobj *surf3d;
-       struct nouveau_grobj *m2mf;
-       struct nouveau_grobj *surf2d;
-       struct nouveau_grobj *rop;
-       struct nouveau_grobj *patt;
-       struct nouveau_grobj *rect;
-       struct nouveau_grobj *swzsurf;
-       struct nouveau_grobj *sifm;
-
        const struct nouveau_driver *driver;
-       struct nouveau_context *context;
 };
 
 #endif