Code reorganization: placeholder for state-trackers.
[mesa.git] / src / gallium / aux / tgsi / exec / tgsi_sse2.h
1 #if !defined TGSI_SSE2_H
2 #define TGSI_SSE2_H
3
4 #if defined __cplusplus
5 extern "C" {
6 #endif // defined __cplusplus
7
8 struct tgsi_token;
9 struct x86_function;
10
11 unsigned
12 tgsi_emit_sse2(
13 struct tgsi_token *tokens,
14 struct x86_function *function );
15
16 unsigned
17 tgsi_emit_sse2_fs(
18 struct tgsi_token *tokens,
19 struct x86_function *function );
20
21 #if defined __cplusplus
22 } // extern "C"
23 #endif // defined __cplusplus
24
25 #endif // !defined TGSI_SSE2_H
26