diff options
author | Gareth Hughes <[email protected]> | 2000-10-23 00:16:28 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2000-10-23 00:16:28 +0000 |
commit | fc2427e81b1c648550d0368652d6a475df785027 (patch) | |
tree | 92da699f07610ef4dc07ae4e0add4693c192040d /src/mesa/main/context.c | |
parent | e188b6e1f1d1e5e72985fdc3d69d26eeab26e987 (diff) |
Major audit of all Mesa's x86 assembly code. This round is basically
general cleanups - more to come.
Added P6 architecture timing to debug_xform routines. Still need to add
test_all_vertex_functions test for the v16 asm. Dynamic reconfiguration
of counter overhead for more accurate benchmarking.
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index c57f37c5791..8a5bf559e8c 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.94 2000/10/21 00:02:47 brianp Exp $ */ +/* $Id: context.c,v 1.95 2000/10/23 00:16:28 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -454,6 +454,7 @@ one_time_init( void ) gl_init_translate(); gl_init_vbrender(); gl_init_vbxform(); + gl_init_vertices(); if (getenv("MESA_DEBUG")) { _glapi_noop_enable_warnings(GL_TRUE); @@ -884,7 +885,7 @@ init_attrib_groups( GLcontext *ctx ) ctx->Current.Primitive = (GLenum) (GL_POLYGON + 1); ctx->Current.Flag = (VERT_NORM | - VERT_INDEX | + VERT_INDEX | VERT_RGBA | VERT_EDGE | VERT_TEX0_1 | @@ -2114,4 +2115,4 @@ GLenum gl_reduce_prim[GL_POLYGON+1] = { GL_TRIANGLES, GL_TRIANGLES, GL_TRIANGLES, -}; +}; |