diff options
author | Brian Paul <[email protected]> | 2002-10-02 22:05:55 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-02 22:05:55 +0000 |
commit | 0adce5d0ed20910a41c2115e4dd0173fdcc53cdb (patch) | |
tree | d83891276a6df6cebe5bc1ed198aa4554700f70d /src/mesa/main/polygon.c | |
parent | 641b2307ec77e70a5b1db75934438d2fbb75613c (diff) |
removed unused ctx->Polygon.OffsetMRD
Diffstat (limited to 'src/mesa/main/polygon.c')
-rw-r--r-- | src/mesa/main/polygon.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/main/polygon.c b/src/mesa/main/polygon.c index 95371579fad..91c3933b543 100644 --- a/src/mesa/main/polygon.c +++ b/src/mesa/main/polygon.c @@ -1,10 +1,10 @@ -/* $Id: polygon.c,v 1.23 2002/06/15 02:38:16 brianp Exp $ */ +/* $Id: polygon.c,v 1.24 2002/10/02 22:05:58 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 4.1 * - * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -195,7 +195,6 @@ _mesa_PolygonOffset( GLfloat factor, GLfloat units ) FLUSH_VERTICES(ctx, _NEW_POLYGON); ctx->Polygon.OffsetFactor = factor; ctx->Polygon.OffsetUnits = units; - ctx->Polygon.OffsetMRD = units * ctx->MRD; if (ctx->Driver.PolygonOffset) ctx->Driver.PolygonOffset( ctx, factor, units ); |