diff options
author | Corbin Simpson <[email protected]> | 2009-03-25 07:15:07 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-03-25 07:15:49 -0700 |
commit | def5660c9eed84f92838f9f7679deef94ab27c58 (patch) | |
tree | e477f964ef86f1fa01ffae1552aa70e0f59c875f /src/gallium/drivers/r300/r300_debug.c | |
parent | 1db736f74a911f74228d6843f4d981eeafb8669d (diff) |
r300-gallium: r300-fs: Moar.
Diffstat (limited to 'src/gallium/drivers/r300/r300_debug.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_debug.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_debug.c b/src/gallium/drivers/r300/r300_debug.c index f657588c720..8d44756c332 100644 --- a/src/gallium/drivers/r300/r300_debug.c +++ b/src/gallium/drivers/r300/r300_debug.c @@ -22,6 +22,14 @@ #include "r300_debug.h" +static void r300_dump_fs(struct r300_fragment_shader* fs) +{ + int i; + + for (i = 0; i < fs->alu_instruction_count; i++) { + } +} + static char* r500_fs_swiz[] = { " R", " G", |