nouveau: reenable all the non-nv50 pipe drivers

They still won't build yet, but anyway..
This commit is contained in:
Ben Skeggs 2009-02-20 09:47:56 +10:00
parent b85c81760c
commit 8cf997b7c8
2 changed files with 5 additions and 7 deletions

View 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:

View 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 \