summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_state_shader.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-03-30 23:54:53 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-03-31 18:32:10 -0700
commit63529c731a090c5e41c1224ca79b544243a1e570 (patch)
treec55679c93a310f761988e0c44d0f296d29f8836b /src/gallium/drivers/r300/r300_state_shader.c
parenta44f54912e4bc0f6be0b7303f8b7a1b934c5819a (diff)
r300-gallium: Stubs for vertex shaders.
Diffstat (limited to 'src/gallium/drivers/r300/r300_state_shader.c')
-rw-r--r--src/gallium/drivers/r300/r300_state_shader.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_state_shader.c b/src/gallium/drivers/r300/r300_state_shader.c
index 5dc7266f9b..1b02239ee7 100644
--- a/src/gallium/drivers/r300/r300_state_shader.c
+++ b/src/gallium/drivers/r300/r300_state_shader.c
@@ -623,15 +623,14 @@ void r300_translate_fragment_shader(struct r300_context* r300,
}
break;
}
-
}
- debug_printf("r300: %d texs and %d colors, first free reg is %d\n",
+ debug_printf("r300: fs: %d texs and %d colors, first free reg is %d\n",
assembler->tex_count, assembler->color_count,
assembler->tex_count + assembler->color_count);
consts->count = consts->user_count + assembler->imm_count;
- debug_printf("r300: %d total constants, "
+ debug_printf("r300: fs: %d total constants, "
"%d from user and %d from immediates\n", consts->count,
consts->user_count, assembler->imm_count);
r300_fs_finalize(fs, assembler);