mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 22:38:05 +02:00
added const qualifiers
This commit is contained in:
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
4
src/mesa/pipe/tgsi/exec/tgsi_sse2.c
Normal file → Executable 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
4
src/mesa/pipe/tgsi/exec/tgsi_sse2.h
Normal file → Executable 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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue