From 690f5af33795b2f0bb213877f0dcdfb40fd9b469 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 12 Sep 2008 07:56:43 -0600 Subject: gallium: don't build winsys/ here --- src/gallium/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/Makefile b/src/gallium/Makefile index 8a516f7112..36bd3623e7 100644 --- a/src/gallium/Makefile +++ b/src/gallium/Makefile @@ -2,7 +2,8 @@ TOP = ../.. include $(TOP)/configs/current -SUBDIRS = auxiliary drivers winsys +SUBDIRS = auxiliary drivers +# Note winsys/ needs to be built after src/mesa default: subdirs -- cgit v1.2.3 From fa0aa1443b3aede0fce960b7a15606ce2ff493eb Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 12 Sep 2008 07:57:08 -0600 Subject: cell: disable calls to old gen code --- src/gallium/drivers/cell/ppu/cell_pipe_state.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/cell/ppu/cell_pipe_state.c b/src/gallium/drivers/cell/ppu/cell_pipe_state.c index e04cf5f274..475c6ef0ce 100644 --- a/src/gallium/drivers/cell/ppu/cell_pipe_state.c +++ b/src/gallium/drivers/cell/ppu/cell_pipe_state.c @@ -48,8 +48,9 @@ cell_create_blend_state(struct pipe_context *pipe, struct cell_blend_state *cb = MALLOC(sizeof(struct cell_blend_state)); (void) memcpy(cb, blend, sizeof(*blend)); +#if 0 cell_generate_alpha_blend(cb); - +#endif return cb; } @@ -100,8 +101,9 @@ cell_create_depth_stencil_alpha_state(struct pipe_context *pipe, MALLOC(sizeof(struct cell_depth_stencil_alpha_state)); (void) memcpy(cdsa, depth_stencil, sizeof(*depth_stencil)); +#if 0 cell_generate_depth_stencil_test(cdsa); - +#endif return cdsa; } -- cgit v1.2.3 From 2d28c2e3566c80c5ad0b0fd543cb4cd4cf9f36bd Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 12 Sep 2008 07:57:28 -0600 Subject: cell: update branch info in docs --- docs/cell.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/cell.html b/docs/cell.html index f9915d67e5..e1160b2428 100644 --- a/docs/cell.html +++ b/docs/cell.html @@ -29,12 +29,12 @@ Second, to implement a full-featured OpenGL driver with support for GLSL, etc.

Source Code

-The Cell driver source code is on the gallium-0.1 branch of the -git repository. +The latest Cell driver source code is on the gallium-0.2 branch +of the Mesa git repository. After you've cloned the repository, check out the branch with:

-   git-checkout -b gallium-0.1 origin/gallium-0.1
+   git-checkout -b gallium-0.2 origin/gallium-0.2
 

To build the driver you'll need the IBM Cell SDK (version 2.1 or 3.0). @@ -60,7 +60,7 @@ directory that contains libGL.so. Verify that the Cell driver is being used by running glxinfo and looking for:

-  OpenGL renderer string: Gallium 0.1, Cell on Xlib
+  OpenGL renderer string: Gallium 0.2, Cell on Xlib
 
-- cgit v1.2.3