summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-10-15 15:46:53 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-10-15 15:46:53 -0600
commit5ecb4f969403c80e9a5e1e94070ec52f99823909 (patch)
tree1bca26426fc0439973c8877f26752362750fe954 /docs
parent224c19a758466cdfb821e1a40db4928311278e90 (diff)
cell: updated status in docs/cell.html
Diffstat (limited to 'docs')
-rw-r--r--docs/cell.html24
1 files changed, 14 insertions, 10 deletions
diff --git a/docs/cell.html b/docs/cell.html
index 34d9a92723..4a9ab14395 100644
--- a/docs/cell.html
+++ b/docs/cell.html
@@ -83,17 +83,17 @@ Similarly, textures are tiled and brought into local store as needed.
<H2>Status</H2>
<p>
-As of September 2008, the driver supports smooth/flat shaded triangle rendering
-with Z testing and simple texture mapping.
-Simple demos like gears run successfully.
-To test texture mapping, try progs/demos/texcyl (press right mouse button for
-rendering options).
-</p>
-<p>
-Runtime/dynamic code generation is being done for per-fragment
-operations (Z test, blend, etc) and for fragment programs (though only a
-few opcodes are implemented now).
+As of October 2008, the driver runs quite a few OpenGL demos.
+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>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
+</ul>
<p>
In general, however, the driver is rather slow because all vertex
transformation is being done by an interpreter running on the PPU.
@@ -114,6 +114,10 @@ more of the following debug options:
<li><b>checker</b> - use a different background clear color for each SPU.
This lets you see which SPU is rendering which screen tiles.
<li><b>sync</b> - wait/synchronize after each DMA transfer
+<li><b>asm</b> - print generated SPU assembly code to stdout
+<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
</ul>
<p>