summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/draw/draw_private.h
diff options
context:
space:
mode:
authormichal <michal@michal-laptop.(none)>2007-10-27 14:01:39 +0100
committermichal <michal@michal-laptop.(none)>2007-10-27 19:01:12 +0100
commit31b4b261083e546998eba37178ac196049e4e501 (patch)
treecf6e2d5bb7b8176edffc57ccf1a3dd22ddf982eb /src/mesa/pipe/draw/draw_private.h
parent7362fe5d163a32cb8ba76de907ccf53dc69ff066 (diff)
Enable SSE2 for vertex shaders.
Diffstat (limited to 'src/mesa/pipe/draw/draw_private.h')
-rw-r--r--src/mesa/pipe/draw/draw_private.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/pipe/draw/draw_private.h b/src/mesa/pipe/draw/draw_private.h
index 44cf0b1c98..ac47d2a76f 100644
--- a/src/mesa/pipe/draw/draw_private.h
+++ b/src/mesa/pipe/draw/draw_private.h
@@ -124,7 +124,9 @@ struct draw_stage
*/
struct draw_vertex_shader {
const struct pipe_shader_state *state;
+#if defined(__i386__) || defined(__386__)
struct x86_function sse2_program;
+#endif
};
/**