fix 1/i typos
[mesa.git] / src / mesa / pipe / tgsi / mesa / mesa_to_tgsi.h
1 #if !defined MESA_TO_TGSI_H
2 #define MESA_TO_TGSI_H
3
4 #if defined __cplusplus
5 extern "C" {
6 #endif // defined __cplusplus
7
8 struct tgsi_token;
9
10 GLboolean
11 tgsi_mesa_compile_fp_program(
12 const struct gl_fragment_program *program,
13 GLuint numInputs,
14 const GLuint inputMapping[],
15 const ubyte inputSemanticName[],
16 const ubyte inputSemanticIndex[],
17 const GLuint interpMode[],
18 const GLuint outputMapping[],
19 struct tgsi_token *tokens,
20 GLuint maxTokens );
21
22 GLboolean
23 tgsi_mesa_compile_vp_program(
24 const struct gl_vertex_program *program,
25 const GLuint inputMapping[],
26 const GLuint outputMapping[],
27 struct tgsi_token *tokens,
28 GLuint maxTokens );
29
30
31 #if defined __cplusplus
32 } // extern "C"
33 #endif // defined __cplusplus
34
35 #endif // !defined MESA_TO_TGSI_H
36