diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-10-23 10:47:17 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-10-23 10:47:17 -0600 |
commit | 02c9009bb842cd8a47bc36ea274ef54ff47e1528 (patch) | |
tree | 1927c34ba6e761ad9205238b542a2de6cbbd43cb /docs | |
parent | 6b69e3c71741d99a54c6f4dcb605a3c241239aeb (diff) |
mesa: updated status in cell.html
Diffstat (limited to 'docs')
-rw-r--r-- | docs/cell.html | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/docs/cell.html b/docs/cell.html index 4a9ab1439..7fbbba7c7 100644 --- a/docs/cell.html +++ b/docs/cell.html @@ -88,18 +88,18 @@ Features that work include: </p> <ul> <li>Point/line/triangle rendering, glDrawPixels -<li>2D texture maps with nearest/linear/mipmap filtering -<li>NPOT textures -<li>Cube maps, to some extent +<li>2D, NPOT and cube texture maps with nearest/linear/mipmap filtering <li>Dynamic SPU code generation for fragment shaders, but not complete <li>Dynamic SPU code generation for fragment ops (blend, Z-test, etc), but not complete +<li>Dynamic PPU/PPC code generation for vertex shaders, but not complete </ul> <p> -In general, however, the driver is rather slow because all vertex -transformation is being done by an interpreter running on the PPU. -Programs with many vertices or complex vertex shaders will run especially -slow. -This will be addressed in the future. +Performance has recently improved with the addition of PPC code generation +for vertex shaders, but the code quality isn't too great yet. +</p> +<p> +Another bottleneck is SwapBuffers. It may be the limiting factor for +many simple GL tests. </p> @@ -118,9 +118,17 @@ more of the following debug options: <li><b>fragops</b> - emit fragment ops debug messages <li><b>fragopfallback</b> - don't use codegen for fragment ops <li><b>cmd</b> - print SPU commands as their received +<li><b>cache</b> - print texture cache statistics when program exits </ul> +<p> +Note that some of these options may only work for linux-cell-debug builds. +</p> <p> +If the GALLIUM_NOPPC env var is set, PPC code generation will not be used +and vertex shaders will be run with the TGSI interpreter. +</p> +<p> If the GALLIUM_NOCELL env var is set, the softpipe driver will be used intead of the Cell driver. This is useful for comparison/validation. |