diff options
author | Keith Whitwell <[email protected]> | 2005-05-19 20:25:32 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-05-19 20:25:32 +0000 |
commit | 18a74321aa825c355392f98f1563a971871794cc (patch) | |
tree | 3cc06374799fad2a3e582e38ffd5af95359bbf34 /src/mesa/tnl/t_context.h | |
parent | c2745ffa49e25aa2ff685ee8538a79baad4de54f (diff) |
Invalidate current fastpath on changes to attribute size or offset within
the vertex.
Use existing facilities to check for sse2 and enable when available.
Turn on SSE/SSE2 codegen for t_vertex.c by default when USE_SSE_ASM is
defined. Disable with "MESA_NO_CODEGEN=t".
Diffstat (limited to 'src/mesa/tnl/t_context.h')
-rw-r--r-- | src/mesa/tnl/t_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h index 1d94174b7d9..4988920cf25 100644 --- a/src/mesa/tnl/t_context.h +++ b/src/mesa/tnl/t_context.h @@ -570,7 +570,9 @@ struct tnl_clipspace_fastpath { struct { GLuint format; + GLuint size; GLuint stride; + GLuint offset; } *attr; tnl_emit_func func; |