Kaynağa Gözat

cell: fix breakage from xlib re-org

Some of these fixes are quick band-aids for now.
tags/mesa_20090313
Brian Paul 16 yıl önce
ebeveyn
işleme
a129c7268a

+ 1
- 1
configs/linux-cell Dosyayı Görüntüle

@@ -6,7 +6,7 @@ CONFIG_NAME = linux-cell


# Omiting other gallium drivers:
GALLIUM_DRIVER_DIRS = cell softpipe
GALLIUM_DRIVER_DIRS = cell softpipe trace


# Compiler and flags

+ 1
- 2
src/gallium/drivers/cell/ppu/Makefile Dosyayı Görüntüle

@@ -39,8 +39,7 @@ SOURCES = \
cell_texture.c \
cell_vbuf.c \
cell_vertex_fetch.c \
cell_vertex_shader.c \
cell_winsys.c
cell_vertex_shader.c


OBJECTS = $(SOURCES:.c=.o) \

+ 4
- 0
src/gallium/winsys/xlib/xlib_brw_context.c Dosyayı Görüntüle

@@ -199,7 +199,11 @@ xlib_create_brw_context( struct pipe_screen *screen,

/* Create the i965simple context:
*/
#ifdef GALLIUM_CELL
return NULL;
#else
return brw_create( screen,
&xbcws->brw_context_winsys,
0 );
#endif
}

+ 4
- 0
src/gallium/winsys/xlib/xlib_brw_screen.c Dosyayı Görüntüle

@@ -352,7 +352,11 @@ xlib_create_brw_winsys( void )
struct pipe_screen *
xlib_create_brw_screen( struct pipe_winsys *winsys )
{
#ifdef GALLIUM_CELL
return NULL;
#else
return brw_create_screen(winsys, 0/* XXX pci_id */);
#endif
}



+ 1
- 1
src/gallium/winsys/xlib/xlib_softpipe.c Dosyayı Görüntüle

@@ -708,7 +708,7 @@ xlib_create_cell_winsys( void )
struct pipe_screen *
xlib_create_cell_screen( struct pipe_winsys *pws )
{
return xlib_create_softpipe_screen( pws );
return cell_create_screen( pws );
}



Loading…
İptal
Kaydet