diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-10-15 10:54:06 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-10-15 10:54:57 -0600 |
commit | f60c756ed14f25731ff2a52d6b695ceb5b7a6f6b (patch) | |
tree | 76daf86f4fa9e68b6985aff9bd2cd3fb2941c99b /src | |
parent | 4e506f422a13b20fcc95edb6c7048a9de6e32efa (diff) |
cell: additional debug
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_command.c b/src/gallium/drivers/cell/spu/spu_command.c index c28677ebf8..a07b312111 100644 --- a/src/gallium/drivers/cell/spu/spu_command.c +++ b/src/gallium/drivers/cell/spu/spu_command.c @@ -250,6 +250,7 @@ cmd_state_fs_constants(const uint64_t *buffer, uint pos) /* Expand each float to float[4] for SOA execution */ for (i = 0; i < num_const; i++) { + DEBUG_PRINTF(" const[%u] = %f\n", i, constants[i]); spu.constants[i] = spu_splats(constants[i]); } |