diff options
author | michal <michal@michal-laptop.(none)> | 2007-08-24 12:52:47 +0100 |
---|---|---|
committer | michal <michal@michal-laptop.(none)> | 2007-08-24 12:53:19 +0100 |
commit | b5c14b36addc46d8cc02e1e7d1ac85ea3ce82e8e (patch) | |
tree | 4e96518add98acfce68b8865f03042b46efdb962 /src/mesa/pipe/tgsi/exec/tgsi_sse2.h | |
parent | cd9368253011e00c2b5838e0f1dbb440f04b7f3a (diff) |
Add tgsi_sse2.
Diffstat (limited to 'src/mesa/pipe/tgsi/exec/tgsi_sse2.h')
-rwxr-xr-x | src/mesa/pipe/tgsi/exec/tgsi_sse2.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_sse2.h b/src/mesa/pipe/tgsi/exec/tgsi_sse2.h new file mode 100755 index 0000000000..4a39658484 --- /dev/null +++ b/src/mesa/pipe/tgsi/exec/tgsi_sse2.h @@ -0,0 +1,21 @@ +#if !defined TGSI_SSE2_H +#define TGSI_SSE2_H + +#if defined __cplusplus +extern "C" { +#endif // defined __cplusplus + +struct tgsi_token; +struct x86_function; + +unsigned +tgsi_emit_sse2( + struct tgsi_token *tokens, + struct x86_function *function ); + +#if defined __cplusplus +} // extern "C" +#endif // defined __cplusplus + +#endif // !defined TGSI_SSE2_H + |