nouveau: reenable all the non-nv50 pipe drivers
authorBen Skeggs <bskeggs@redhat.com>
Thu, 19 Feb 2009 23:47:56 +0000 (09:47 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Thu, 19 Feb 2009 23:47:56 +0000 (09:47 +1000)
They still won't build yet, but anyway..

src/gallium/winsys/drm/nouveau/common/nouveau_winsys.c
src/gallium/winsys/drm/nouveau/dri/Makefile

index 89824b2..b6199f8 100644 (file)
@@ -77,7 +77,6 @@ nouveau_pipe_create(struct nouveau_context *nv)
                return NULL;
 
        switch (chipset & 0xf0) {
-#if 0
        case 0x00:
                hws_create = nv04_screen_create;
                hw_create = nv04_create;
@@ -99,7 +98,6 @@ nouveau_pipe_create(struct nouveau_context *nv)
                hws_create = nv40_screen_create;
                hw_create = nv40_create;
                break;
-#endif
        case 0x50:
        case 0x80:
        case 0x90:
index 2e7a3a7..a73e8d5 100644 (file)
@@ -7,12 +7,12 @@ MINIGLX_SOURCES =
 
 PIPE_DRIVERS = \
        $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
+       $(TOP)/src/gallium/drivers/nv04/libnv04.a \
+       $(TOP)/src/gallium/drivers/nv10/libnv10.a \
+       $(TOP)/src/gallium/drivers/nv20/libnv20.a \
+       $(TOP)/src/gallium/drivers/nv30/libnv30.a \
+       $(TOP)/src/gallium/drivers/nv40/libnv40.a \
        $(TOP)/src/gallium/drivers/nv50/libnv50.a
-#      $(TOP)/src/gallium/drivers/nv04/libnv04.a \
-#      $(TOP)/src/gallium/drivers/nv10/libnv10.a \
-#      $(TOP)/src/gallium/drivers/nv20/libnv20.a \
-#      $(TOP)/src/gallium/drivers/nv30/libnv30.a \
-#      $(TOP)/src/gallium/drivers/nv40/libnv40.a \
        
 DRIVER_SOURCES = \
        nouveau_context_dri.c \