added const qualifiers

This commit is contained in:
Brian 2007-10-18 11:05:03 -06:00
parent 2ae9f53c9d
commit b21f4ac15f
2 changed files with 4 additions and 4 deletions

4
src/mesa/pipe/tgsi/exec/tgsi_sse2.c Normal file → Executable file
View file

@ -1824,7 +1824,7 @@ emit_declaration(
unsigned
tgsi_emit_sse2(
struct tgsi_token *tokens,
const struct tgsi_token *tokens,
struct x86_function *func )
{
struct tgsi_parse_context parse;
@ -1889,7 +1889,7 @@ tgsi_emit_sse2(
*/
unsigned
tgsi_emit_sse2_fs(
struct tgsi_token *tokens,
const struct tgsi_token *tokens,
struct x86_function *func )
{
struct tgsi_parse_context parse;

4
src/mesa/pipe/tgsi/exec/tgsi_sse2.h Normal file → Executable file
View file

@ -10,12 +10,12 @@ struct x86_function;
unsigned
tgsi_emit_sse2(
struct tgsi_token *tokens,
const struct tgsi_token *tokens,
struct x86_function *function );
unsigned
tgsi_emit_sse2_fs(
struct tgsi_token *tokens,
const struct tgsi_token *tokens,
struct x86_function *function );
#if defined __cplusplus