gallium: rename tgsi_translate_mesa_program() to st_translate_mesa_program()

This commit is contained in:
Brian Paul 2008-09-19 09:25:32 -06:00
parent fad2dd8447
commit 81234666fc
3 changed files with 4 additions and 4 deletions

View File

@ -713,7 +713,7 @@ find_temporaries(const struct gl_program *program,
* \return number of tokens placed in 'tokens' buffer, or zero if error
*/
GLuint
tgsi_translate_mesa_program(
st_translate_mesa_program(
uint procType,
const struct gl_program *program,
GLuint numInputs,

View File

@ -40,7 +40,7 @@ struct tgsi_token;
struct gl_program;
GLuint
tgsi_translate_mesa_program(
st_translate_mesa_program(
uint procType,
const struct gl_program *program,
GLuint numInputs,

View File

@ -307,7 +307,7 @@ st_translate_vertex_program(struct st_context *st,
/* XXX: fix static allocation of tokens:
*/
num_tokens = tgsi_translate_mesa_program( TGSI_PROCESSOR_VERTEX,
num_tokens = st_translate_mesa_program( TGSI_PROCESSOR_VERTEX,
&stvp->Base.Base,
/* inputs */
vs_num_inputs,
@ -481,7 +481,7 @@ st_translate_fragment_program(struct st_context *st,
/* XXX: fix static allocation of tokens:
*/
num_tokens = tgsi_translate_mesa_program( TGSI_PROCESSOR_FRAGMENT,
num_tokens = st_translate_mesa_program( TGSI_PROCESSOR_FRAGMENT,
&stfp->Base.Base,
/* inputs */
fs_num_inputs,