Fixed 'IRound' to 'IROUND' in mmath.h
authorKeith Whitwell <keith@tungstengraphics.com>
Mon, 8 Jan 2001 21:55:59 +0000 (21:55 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Mon, 8 Jan 2001 21:55:59 +0000 (21:55 +0000)
Fixed fallback path for drawarrays/_tnl_hard_begin.

Removed disabled debug code.

16 files changed:
src/mesa/Makefile.X11
src/mesa/drivers/glide/fxtris.c
src/mesa/main/Makefile.X11
src/mesa/main/mtypes.h
src/mesa/tnl/t_array_api.c
src/mesa/tnl/t_array_import.c
src/mesa/tnl/t_context.c
src/mesa/tnl/t_eval_api.c
src/mesa/tnl/t_imm_api.c
src/mesa/tnl/t_imm_api.h
src/mesa/tnl/t_imm_dlist.c
src/mesa/tnl/t_imm_dlist.h
src/mesa/tnl/t_imm_exec.c
src/mesa/tnl/t_imm_fixup.c
src/mesa/tnl/t_pipeline.c
src/mesa/tnl/t_vb_render.c

index f1b7698a92b9de09fe3b04b6ec7b13b6dc7e5786..fbf8d20999d6879591d8200a30a915b85fc8818d 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile.X11,v 1.38 2001/01/05 05:31:42 keithw Exp $
+# $Id: Makefile.X11,v 1.39 2001/01/08 21:55:59 keithw Exp $
 
 # Mesa 3-D graphics library
 # Version:  3.5
@@ -188,8 +188,8 @@ ASM_SOURCES =
 ADDITIONAL_OBJ = 
 
 OBJECTS = $(ASM_SOURCES:.S=.o) \
-       $(CORE_SOURCES:.c=.o) \
        $(DRIVER_SOURCES:.c=.o) \
+       $(CORE_SOURCES:.c=.o) \
        $(ADDITIONAL_OBJ)
 
 
index b2864dbb8e1c2b0981f380a53fed76ba88639231..d15ebf8bc10c72f5ae7c4345850f04b857e6c070 100644 (file)
@@ -480,8 +480,10 @@ fx_null_tri( GLcontext *ctx,
    grDrawTriangle( &v[i2].v, &v[i1].v, &v[i].v )
 
 #define TAG(x) fx_##x##_verts
-#define LOCAL_VARS \
-    fxVertex *v = FX_CONTEXT(ctx)->verts;      
+#define LOCAL_VARS                                             \
+    fxVertex *v = FX_CONTEXT(ctx)->verts;                      \
+    const GLuint * const elt = TNL_CONTEXT(ctx)->vb.Elts;      \
+    (void) elt;
 
 /* Verts, no clipping.
  */
@@ -496,12 +498,8 @@ fx_null_tri( GLcontext *ctx,
  */
 #undef ELT
 #undef TAG
-#undef LOCAL_VARS
 #define TAG(x) fx_##x##_elts
 #define ELT(x) elt[x]
-#define LOCAL_VARS                             \
-    fxVertex *v = FX_CONTEXT(ctx)->verts;   \
-    const GLuint * const elt = TNL_CONTEXT(ctx)->vb.Elts;      
 #include "tnl/t_vb_rendertmp.h"
 
 
index f1b7698a92b9de09fe3b04b6ec7b13b6dc7e5786..fbf8d20999d6879591d8200a30a915b85fc8818d 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile.X11,v 1.38 2001/01/05 05:31:42 keithw Exp $
+# $Id: Makefile.X11,v 1.39 2001/01/08 21:55:59 keithw Exp $
 
 # Mesa 3-D graphics library
 # Version:  3.5
@@ -188,8 +188,8 @@ ASM_SOURCES =
 ADDITIONAL_OBJ = 
 
 OBJECTS = $(ASM_SOURCES:.S=.o) \
-       $(CORE_SOURCES:.c=.o) \
        $(DRIVER_SOURCES:.c=.o) \
+       $(CORE_SOURCES:.c=.o) \
        $(ADDITIONAL_OBJ)
 
 
index 4cb966f7d2fffd8a90dd1dfabf718408ea42d926..f3a3a56b0a373446985a214dbe6f3e0da32d93ec 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: mtypes.h,v 1.12 2001/01/08 04:09:41 keithw Exp $ */
+/* $Id: mtypes.h,v 1.13 2001/01/08 21:55:59 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -1576,13 +1576,14 @@ struct __GLcontextRec {
    /* Dither disable via MESA_NO_DITHER env var */
    GLboolean NoDither;
 
-#ifdef DEBUG
    GLboolean Rendering;
-#endif
 
 #if defined(MESA_TRACE)
    struct _glapi_table *TraceDispatch;
    trace_context_t     *TraceCtx;
+#else
+   void *TraceDispatch;
+   void *TraceCtx;
 #endif
 
    /* Hooks for module contexts.  These will eventually live
index 83d10337be3663f10627c739ca9c5b582a477df9..587f1b43d7b28012cb4007e3b0c74e2e6a3c9e11 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_array_api.c,v 1.1 2000/12/26 05:09:32 keithw Exp $ */
+/* $Id: t_array_api.c,v 1.2 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -101,9 +101,9 @@ _tnl_DrawArrays(GLenum mode, GLint start, GLsizei count)
        * because the array range is too large to process in a single
        * VB.  In GL_EXECUTE mode, this introduces two redundant
        * operations: producing the flag array and computing the orflag
-       * of the flag array. 
+       * of the flag array.
        */
-#if 0
+#if 1
       if (_tnl_hard_begin( ctx, mode )) {
         GLuint j;
         for (j = 0 ; j < count ; ) {
@@ -127,8 +127,7 @@ _tnl_DrawArrays(GLenum mode, GLint start, GLsizei count)
 #else
       /* Simple alternative to above code.
        */
-/*        if (_tnl_hard_begin( ctx, mode ))  */
-      _tnl_begin(ctx,mode);
+      if (_tnl_hard_begin( ctx, mode )) 
       {
         GLuint i;
         for (i=start;i<count;i++) {
index 087852febef336344498b21a13f73fbe2e609359..0379bd402b352769903070d9507bb0134eb0e93b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_array_import.c,v 1.5 2001/01/08 04:09:41 keithw Exp $ */
+/* $Id: t_array_import.c,v 1.6 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -195,9 +195,6 @@ static void _tnl_import_texcoord( GLcontext *ctx,
    struct gl_client_array *tmp;
    GLboolean is_writeable = 0;
 
-/*     fprintf(stderr, "%s %d before wr %d ptr %p\n", __FUNCTION__, i, writeable, */
-/*        inputs->TexCoord[i].data); */
-
    tmp = _ac_import_texcoord(ctx, i, GL_FLOAT, 
                             stride ? 4*sizeof(GLfloat) : 0, 
                             0,
@@ -213,9 +210,6 @@ static void _tnl_import_texcoord( GLcontext *ctx,
       inputs->TexCoord[i].flags |= VEC_BAD_STRIDE;
    if (!is_writeable)
       inputs->TexCoord[i].flags |= VEC_NOT_WRITEABLE;
-
-/*     fprintf(stderr, "%s %d before wr %d ptr %p\n", __FUNCTION__, i, is_writeable, */
-/*        inputs->TexCoord[i].data); */
 }
  
   
index 7d04210eb66102a0b7ad136a7417563edfcde67b..93886b71101daf986342a6284a09bf03a879da3b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_context.c,v 1.8 2001/01/05 02:26:49 keithw Exp $ */
+/* $Id: t_context.c,v 1.9 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -39,6 +39,7 @@
 #include "t_array_api.h"
 #include "t_eval_api.h"
 #include "t_imm_alloc.h"
+#include "t_imm_api.h"
 #include "t_imm_exec.h"
 #include "t_imm_dlist.h"
 #include "t_pipeline.h"
@@ -84,6 +85,7 @@ _tnl_CreateContext( GLcontext *ctx )
    /* Create the TNLcontext structure
     */
    ctx->swtnl_context = tnl = CALLOC( sizeof(TNLcontext) );
+
    if (!tnl) {
       return GL_FALSE;
    }
@@ -117,7 +119,6 @@ _tnl_CreateContext( GLcontext *ctx )
    ctx->Driver.NeedFlush = FLUSH_UPDATE_CURRENT;
    ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END;
    ctx->Driver.CurrentSavePrimitive = PRIM_UNKNOWN;
-
    return GL_TRUE;
 }
 
index efe78763337e7a7930447b53636cf48de7b3ebde..0a351eed894c87d6fb18ab4d2560117c5b97a408 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_eval_api.c,v 1.1 2000/12/26 05:09:32 keithw Exp $ */
+/* $Id: t_eval_api.c,v 1.2 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -98,7 +98,7 @@ _tnl_exec_EvalMesh1( GLenum mode, GLint i1, GLint i2 )
         ctx->CompileFlag = GL_FALSE;
       }
 
-      _tnl_begin( ctx, prim );
+      _tnl_hard_begin( ctx, prim );
       for (i=i1;i<=i2;i++,u+=du) {
         _tnl_eval_coord1f( ctx, u );
       }
@@ -151,7 +151,7 @@ _tnl_exec_EvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 )
 
       switch (mode) {
       case GL_POINT:
-        _tnl_begin( ctx, GL_POINTS );
+        _tnl_hard_begin( ctx, GL_POINTS );
         for (v=v1,j=j1;j<=j2;j++,v+=dv) {
            for (u=u1,i=i1;i<=i2;i++,u+=du) {
               _tnl_eval_coord2f( ctx, u, v );
@@ -161,14 +161,14 @@ _tnl_exec_EvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 )
         break;
       case GL_LINE:
         for (v=v1,j=j1;j<=j2;j++,v+=dv) {
-           _tnl_begin( ctx, GL_LINE_STRIP );
+           _tnl_hard_begin( ctx, GL_LINE_STRIP );
            for (u=u1,i=i1;i<=i2;i++,u+=du) {
               _tnl_eval_coord2f( ctx, u, v );
            }
            _tnl_end(ctx);
         }
         for (u=u1,i=i1;i<=i2;i++,u+=du) {
-           _tnl_begin( ctx, GL_LINE_STRIP );
+           _tnl_hard_begin( ctx, GL_LINE_STRIP );
            for (v=v1,j=j1;j<=j2;j++,v+=dv) {
               _tnl_eval_coord2f( ctx, u, v );
            }
@@ -177,7 +177,7 @@ _tnl_exec_EvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 )
         break;
       case GL_FILL:
         for (v=v1,j=j1;j<j2;j++,v+=dv) {
-           _tnl_begin( ctx, GL_TRIANGLE_STRIP );
+           _tnl_hard_begin( ctx, GL_TRIANGLE_STRIP );
            for (u=u1,i=i1;i<=i2;i++,u+=du) {
               _tnl_eval_coord2f( ctx, u, v );
               _tnl_eval_coord2f( ctx, u, v+dv );
index aeca38dd4ff39f82545aeed98295435e83fb355b..0e00e59cdb7ecb346c1d79c5c18aa884b9e13754 100644 (file)
@@ -68,7 +68,7 @@ void _tnl_flush_vertices( GLcontext *ctx, GLuint flags )
 }
 
 
-void
+static void
 _tnl_begin( GLcontext *ctx, GLenum p )
 {
    struct immediate *IM = TNL_CURRENT_IM(ctx);
@@ -172,6 +172,10 @@ _tnl_hard_begin( GLcontext *ctx, GLenum p )
     */
    if (!ctx->CompileFlag) {
       _tnl_begin( ctx, p );
+
+      /* Set this for the duration:
+       */
+      ctx->Driver.CurrentExecPrimitive = p;
       return GL_TRUE;
    }
        
@@ -182,19 +186,15 @@ _tnl_hard_begin( GLcontext *ctx, GLenum p )
  
    switch (IM->BeginState & (VERT_BEGIN_0|VERT_BEGIN_1)) {
    case VERT_BEGIN_0|VERT_BEGIN_1:
-      /* In this case we know for sure that the list is going to be
-       * inside a begin/end object at this point when run.  Rather
-       * than saving the redundant data, compile in an error and
-       * return.
+      /* This is an immediate known to be inside a begin/end object.
        */
       IM->BeginState |= (VERT_ERROR_1|VERT_ERROR_0);
       return GL_FALSE;
       
    case VERT_BEGIN_0:
    case VERT_BEGIN_1:
-      /* This is a normal (non-hard) immediate, in an unknown
-       * begin/end state.  Assert it is empty and conviert it to a
-       * 'hard' one.  
+      /* This is a display-list immediate in an unknown begin/end
+       * state.  Assert it is empty and conviert it to a 'hard' one.  
        */
       ASSERT (IM->SavedBeginState == 0);
       
@@ -207,6 +207,9 @@ _tnl_hard_begin( GLcontext *ctx, GLenum p )
       
       /* FALLTHROUGH */
    case 0: 
+      /* Unless we have fallen through, this is an immediate known to 
+       * be outside begin/end objects.
+       */
       
       IM->BeginState |= VERT_BEGIN_0|VERT_BEGIN_1;
         
@@ -229,6 +232,7 @@ _tnl_hard_begin( GLcontext *ctx, GLenum p )
        * vertices before the next state change.
        */
       ctx->Driver.NeedFlush |= FLUSH_STORED_VERTICES;
+
       return GL_TRUE;
       
    default:
@@ -237,6 +241,40 @@ _tnl_hard_begin( GLcontext *ctx, GLenum p )
    }
 }
 
+
+
+/* Need to do this to get the correct begin/end error behaviour from
+ * functions like ColorPointerEXT which are still active in
+ * SAVE_AND_EXEC modes.  
+ */
+void
+_tnl_save_Begin( GLenum mode )
+{
+   GET_CURRENT_CONTEXT(ctx);
+  
+    if (mode > GL_POLYGON) {
+      _mesa_compile_error( ctx, GL_INVALID_ENUM, "glBegin" );
+      return;               
+   }
+
+   if (ctx->ExecuteFlag) {
+      /* Preserve vtxfmt invarient:
+       */
+      if (ctx->NewState)
+        gl_update_state( ctx );
+
+      /* Slot in geomexec: No need to call setdispatch as we know
+       * CurrentDispatch is Save.
+       */
+      ASSERT(ctx->CurrentDispatch == ctx->Save);
+   }
+
+   _tnl_begin( ctx, mode );
+}
+
+
+
+
 /* Note the continuation of a partially completed primitive.  For
  * driver t&l fallbacks between begin/end primitives.  Has basically
  * the same effects as a primitive wrapping onto a second immediate
@@ -297,6 +335,10 @@ _tnl_end( GLcontext *ctx )
 
    IM->BeginState = state;      
 
+   if (!ctx->CompileFlag)
+      ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END;
+
+
    /* You can set this flag to get the old 'flush_vb on glEnd()'
     * behaviour.
     */
@@ -316,10 +358,6 @@ _tnl_End(void)
     */
    if (ctx->CompileFlag) 
       ctx->Driver.CurrentSavePrimitive = PRIM_OUTSIDE_BEGIN_END;
-   else
-      ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END;
-   
-   
 }
 
 
index 8e4c9943d212de941b18dd7b9486590a37747d8c..3c0686403d45db19708918266c6f74a184c9885d 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_imm_api.h,v 1.1 2000/12/26 05:09:32 keithw Exp $ */
+/* $Id: t_imm_api.h,v 1.2 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
 #include "t_context.h"
 
 
+extern void _tnl_save_Begin( GLenum mode );
+
 /* TNL-private internal functions for building higher-level operations:
  */
-extern void _tnl_begin( GLcontext *ctx, GLenum p );
 extern GLboolean _tnl_hard_begin( GLcontext *ctx, GLenum p );
 extern void _tnl_end( GLcontext *ctx );
 extern void _tnl_vertex2f( GLcontext *ctx, GLfloat x, GLfloat y );
index e22661e7ea90e3c6efbdebff72ec2e3a4cc64e87..b77344a7ac6f74e6cf22f5f5b7a321a51fc79bc5 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_imm_dlist.c,v 1.4 2000/12/28 22:11:05 keithw Exp $ */
+/* $Id: t_imm_dlist.c,v 1.5 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -112,8 +112,6 @@ _tnl_compile_cassette( GLcontext *ctx, struct immediate *IM )
       return;
    
    node->IM = im; im->ref_count++;
-/*     fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*        im->id, im->ref_count); */
    node->Start = im->Start;
    node->Count = im->Count;
    node->BeginState = im->BeginState;
@@ -144,10 +142,6 @@ _tnl_compile_cassette( GLcontext *ctx, struct immediate *IM )
       if (!new_im) return;
       new_im->ref_count++;
       im->ref_count--;         /* remove CURRENT_IM reference */
-/*        fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*           im->id, im->ref_count); */
-/*        fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*           new_im->id, new_im->ref_count); */
       ASSERT(im->ref_count > 0);
       SET_IMMEDIATE( ctx, new_im );
       _tnl_reset_input( ctx, IMM_MAX_COPIED_VERTS,
@@ -343,15 +337,9 @@ _tnl_EndList( GLcontext *ctx )
 
    ctx->swtnl_im = 0;
    IM->ref_count--;
-/*     fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*        IM->id, IM->ref_count); */
    if (IM == tnl->ExecCopySource) {
       IM->ref_count--;
-/*        fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*           IM->id, IM->ref_count); */
    } else {
-/*        fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*           tnl->ExecCopySource->id, tnl->ExecCopySource->ref_count-1); */
       if ( --tnl->ExecCopySource->ref_count == 0 )
         _tnl_free_immediate( tnl->ExecCopySource );
    }
@@ -366,14 +354,10 @@ _tnl_EndList( GLcontext *ctx )
 
    tnl->ExecCopySource = IM;
    IM->ref_count++;
-/*     fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*        IM->id, IM->ref_count); */
 
 
    SET_IMMEDIATE( ctx, IM );
    IM->ref_count++;
-/*     fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*        IM->id, IM->ref_count); */
 
    _tnl_reset_input( ctx, IMM_MAX_COPIED_VERTS, 0, 0 );        
 
@@ -417,31 +401,3 @@ _tnl_dlist_init( GLcontext *ctx )
                          print_compiled_cassette );
 }
 
-/* Need to do this to get the correct begin/end error behaviour from
- * functions like ColorPointerEXT which are still active in
- * SAVE_AND_EXEC modes.  
- */
-void
-_tnl_save_Begin( GLenum mode )
-{
-   GET_CURRENT_CONTEXT(ctx);
-  
-    if (mode > GL_POLYGON) {
-      _mesa_compile_error( ctx, GL_INVALID_ENUM, "glBegin" );
-      return;               
-   }
-
-   if (ctx->ExecuteFlag) {
-      /* Preserve vtxfmt invarient:
-       */
-      if (ctx->NewState)
-        gl_update_state( ctx );
-
-      /* Slot in geomexec: No need to call setdispatch as we know
-       * CurrentDispatch is Save.
-       */
-      ASSERT(ctx->CurrentDispatch == ctx->Save);
-   }
-
-   _tnl_begin( ctx, mode );
-}
index 1b6c4a778ace352e2663a95cbfc90ecc10f7e1eb..69c7bdfdbc2aa86731d5af404d54120d7cfd30bc 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_imm_dlist.h,v 1.1 2000/12/26 05:09:32 keithw Exp $ */
+/* $Id: t_imm_dlist.h,v 1.2 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -38,7 +38,6 @@ extern void _tnl_dlist_init( GLcontext *ctx );
 extern void _tnl_compile_cassette( GLcontext *ctx, struct immediate *IM );
 extern void _tnl_EndList( GLcontext *ctx );
 extern void _tnl_NewList( GLcontext *ctx, GLuint list, GLenum mode );
-extern void _tnl_save_Begin( GLenum mode );
 
 extern void _tnl_EndCallList( GLcontext *ctx );
 extern void _tnl_BeginCallList( GLcontext *ctx, GLuint list );
index 4bdce0d18ddb7a6f570165cfffd0ae144fac7161..e8904dfd1ec8f746db12a8cd70b20e58b4c0e74f 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_imm_exec.c,v 1.5 2001/01/05 02:26:49 keithw Exp $ */
+/* $Id: t_imm_exec.c,v 1.6 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -471,15 +471,12 @@ void _tnl_imm_init( GLcontext *ctx )
 
    ctx->swtnl_im = _tnl_alloc_immediate( ctx );
    TNL_CURRENT_IM(ctx)->ref_count++;
-/*     fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*        TNL_CURRENT_IM(ctx)->id, TNL_CURRENT_IM(ctx)->ref_count); */
 
    tnl->ExecCopyTexSize = 0;
    tnl->ExecCopyCount = 0;
    tnl->ExecCopySource = TNL_CURRENT_IM(ctx);
    TNL_CURRENT_IM(ctx)->ref_count++;
-/*     fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*        TNL_CURRENT_IM(ctx)->id, TNL_CURRENT_IM(ctx)->ref_count); */
+
    TNL_CURRENT_IM(ctx)->CopyStart = IMM_MAX_COPIED_VERTS;
 
    gl_vector4f_init( &tmp->Obj, 0, 0 );
index 5da75db53bf138220734e69c483ff1b12967a570..d4489160dd2e386f65a5422f2ccea64380e8d79c 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_imm_fixup.c,v 1.2 2000/12/28 22:11:05 keithw Exp $ */
+/* $Id: t_imm_fixup.c,v 1.3 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -433,16 +433,12 @@ static void copy_vertices( GLcontext *ctx,
 
    ASSERT(prev == tnl->ExecCopySource);
 
-/*     fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*        tnl->ExecCopySource->id, tnl->ExecCopySource->ref_count-1); */
-
    if (--tnl->ExecCopySource->ref_count == 0)
       _tnl_free_immediate( tnl->ExecCopySource );
    
    next->ref_count++;
    tnl->ExecCopySource = next;
-/*     fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*        next->id, next->ref_count); */
+
    tnl->ExecCopyElts[0] = next->Start-3;
    tnl->ExecCopyElts[1] = next->Start-2;
    tnl->ExecCopyElts[2] = next->Start-1;
@@ -732,14 +728,10 @@ _tnl_get_exec_copy_verts( GLcontext *ctx, struct immediate *IM )
    
 
    if (tnl->ExecCopySource != IM) {
-/*        fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*           tnl->ExecCopySource->id, tnl->ExecCopySource->ref_count-1); */
       if (--tnl->ExecCopySource->ref_count == 0)
         _tnl_free_immediate( tnl->ExecCopySource );
       IM->ref_count++;
       tnl->ExecCopySource = IM;
-/*        fprintf(stderr, "%s id %d refcount %d\n", __FUNCTION__,  */
-/*           tnl->ExecCopySource->id, tnl->ExecCopySource->ref_count); */
    }
 
    if (prim == GL_POLYGON+1) {
index 457b160eb95c7f10c1a9cea413ebf14b46081511..8ee814841b19e14b283be2c23d65b27f00434a6e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_pipeline.c,v 1.7 2000/12/26 05:09:33 keithw Exp $ */
+/* $Id: t_pipeline.c,v 1.8 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -115,7 +115,6 @@ void _tnl_run_pipeline( GLcontext *ctx )
    GLuint changed_inputs = pipe->run_input_changes;
    GLboolean running = GL_TRUE;
    GLuint i;
-
    unsigned short __tmp;
 
    /* Done elsewhere.
index 462ebbda0593158983658ebe21ee7d55813e9066..684cb0212eb347ce45e71a233fd6831615873fc6 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_vb_render.c,v 1.8 2001/01/08 17:41:15 keithw Exp $ */
+/* $Id: t_vb_render.c,v 1.9 2001/01/08 21:56:00 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -603,6 +603,8 @@ static GLboolean run_render( GLcontext *ctx,
         length= VB->PrimitiveLength[i];        
         ASSERT(length || (flags & PRIM_LAST));
         ASSERT((flags & PRIM_MODE_MASK) <= GL_POLYGON+1);
+/*      fprintf(stderr, "Render %s %d..%d\n", */
+/*              _mesa_prim_name[flags&PRIM_MODE_MASK], i, i+length); */
         if (length)
            tab[flags & PRIM_MODE_MASK]( ctx, i, i + length, flags );
       }