Mesa (master): mesa: remove dead code

Brian Paul brianp at kemper.freedesktop.org
Sat Feb 28 16:43:06 UTC 2009


Module: Mesa
Branch: master
Commit: f6021ab3c631345d013437d53a7bc1a4e2359ad4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f6021ab3c631345d013437d53a7bc1a4e2359ad4

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Feb 27 22:04:58 2009 -0700

mesa: remove dead code

---

 src/mesa/main/feedback.c |   12 ------------
 1 files changed, 0 insertions(+), 12 deletions(-)

diff --git a/src/mesa/main/feedback.c b/src/mesa/main/feedback.c
index 48c2ccb..69b235a 100644
--- a/src/mesa/main/feedback.c
+++ b/src/mesa/main/feedback.c
@@ -126,20 +126,8 @@ void _mesa_feedback_vertex( GLcontext *ctx,
                             GLfloat index,
                             const GLfloat texcoord[4] )
 {
-#if 0
-   {
-      /* snap window x, y to fractional pixel position */
-      const GLint snapMask = ~((FIXED_ONE / (1 << SUB_PIXEL_BITS)) - 1);
-      GLfixed x, y;
-      x = FloatToFixed(win[0]) & snapMask;
-      y = FloatToFixed(win[1]) & snapMask;
-      FEEDBACK_TOKEN(ctx, FixedToFloat(x));
-      FEEDBACK_TOKEN(ctx, FixedToFloat(y) );
-   }
-#else
    FEEDBACK_TOKEN( ctx, win[0] );
    FEEDBACK_TOKEN( ctx, win[1] );
-#endif
    if (ctx->Feedback._Mask & FB_3D) {
       FEEDBACK_TOKEN( ctx, win[2] );
    }




More information about the mesa-commit mailing list