svga: Use consistent names for public symbol names of shader dumping facilities.
authorJosé Fonseca <jfonseca@vmware.com>
Tue, 24 Nov 2009 14:43:30 +0000 (14:43 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Fri, 27 Nov 2009 13:34:07 +0000 (13:34 +0000)
src/gallium/drivers/svga/svgadump/svga_dump.c
src/gallium/drivers/svga/svgadump/svga_shader_dump.c
src/gallium/drivers/svga/svgadump/svga_shader_dump.h
src/gallium/drivers/svga/svgadump/svga_shader_op.c
src/gallium/drivers/svga/svgadump/svga_shader_op.h

index c6c353f58e272831e518206d3313d4bb35e5923b..910afa25287d494a2346399f6cf7bb9f924b4d2d 100644 (file)
@@ -1627,7 +1627,7 @@ svga_dump_commands(const void *commands, uint32_t size)
                const SVGA3dCmdDefineShader *cmd = (const SVGA3dCmdDefineShader *)body;
                dump_SVGA3dCmdDefineShader(cmd);
                body = (const uint8_t *)&cmd[1];
-               sh_svga_dump((const uint32_t *)body, 
+               svga_shader_dump((const uint32_t *)body, 
                             (unsigned)(next - body)/sizeof(uint32_t),
                             FALSE );
                body = next;
index c654126d3a82520af38e4aabc4c207cea91126b5..7718bdf757b2a66028e7c1a629ab7c282cbbe952 100644 (file)
@@ -435,7 +435,7 @@ static void dump_srcreg( struct sh_srcreg srcreg, struct sh_srcreg *indreg, cons
 }
 
 void
-sh_svga_dump(
+svga_shader_dump(
    const unsigned *assem,
    unsigned dwords,
    unsigned do_binary )
@@ -602,7 +602,7 @@ sh_svga_dump(
 
       default:
          {
-            const struct sh_opcode_info *info = sh_svga_opcode_info( op.opcode );
+            const struct sh_opcode_info *info = svga_opcode_info( op.opcode );
             uint i;
             uint num_src = info->num_src + op.predicated;
             boolean not_first_arg = FALSE;
index af5549cdba24618bff45b3c84a57543aefbf6afb..a2657acb2f1e33701dd6129540cf0231d4e1f297 100644 (file)
  * @author Michal Krol <michal@vmware.com>
  */
 
-#ifndef ST_SHADER_SVGA_DUMP_H
-#define ST_SHADER_SVGA_DUMP_H
+#ifndef SVGA_SHADER_DUMP_H
+#define SVGA_SHADER_DUMP_H
 
 void
-sh_svga_dump(
+svga_shader_dump(
    const unsigned *assem,
    unsigned dwords,
    unsigned do_binary );
 
-#endif /* ST_SHADER_SVGA_DUMP_H */
+#endif /* SVGA_SHADER_DUMP_H */
index cecc22106b22cd8b31dc0f96ffd463488a667244..8343bfdaab40fdcd77beb00c101be2347251b1d0 100644 (file)
@@ -140,7 +140,7 @@ static struct sh_opcode_info opcode_info[] =
    { "breakp",       1, 1, SVGA3DOP_INVALID,     },
 };
 
-const struct sh_opcode_info *sh_svga_opcode_info( uint op )
+const struct sh_opcode_info *svga_opcode_info( uint op )
 {
    struct sh_opcode_info *info;
 
index 01d39dca8478fc374b244911297447590464b013..e558de02c53e2e4e20db56bd790022bc22e46510 100644 (file)
@@ -30,8 +30,8 @@
  * @author Michal Krol <michal@vmware.com>
  */
 
-#ifndef ST_SHADER_SVGA_OP_H
-#define ST_SHADER_SVGA_OP_H
+#ifndef SVGA_SHADER_OP_H
+#define SVGA_SHADER_OP_H
 
 struct sh_opcode_info
 {
@@ -41,6 +41,6 @@ struct sh_opcode_info
    unsigned svga_opcode:16;
 };
 
-const struct sh_opcode_info *sh_svga_opcode_info( unsigned op );
+const struct sh_opcode_info *svga_opcode_info( unsigned op );
 
-#endif /* ST_SHADER_SVGA_OP_H */
+#endif /* SVGA_SHADER_OP_H */