Softpipe: import TGSI tree. Not hooked-up yet.
[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 GLboolean
9 tgsi_mesa_compile_fp_program(
10 const struct gl_fragment_program *program,
11 struct tgsi_token *tokens,
12 GLuint maxTokens );
13
14 GLboolean
15 tgsi_mesa_compile_vp_program(
16 const struct gl_vertex_program *program,
17 struct tgsi_token *tokens,
18 GLuint maxTokens );
19
20 #if defined __cplusplus
21 } // extern "C"
22 #endif // defined __cplusplus
23
24 #endif // !defined MESA_TO_TGSI_H
25