diff options
author | Brian <brian@yutani.localnet.net> | 2007-02-02 09:09:13 -0700 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-02-02 09:09:13 -0700 |
commit | 4e7fd7ad9604f6b9700a6011338c2bf1381b28da (patch) | |
tree | fbee9a8e1e25fff150c2c566e7e66a0fea801071 /src/mesa/swrast/s_span.h | |
parent | 9742547245f3dc4850faa9e83d178d17669d4c09 (diff) |
get rid of unused span->start field
Diffstat (limited to 'src/mesa/swrast/s_span.h')
-rw-r--r-- | src/mesa/swrast/s_span.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_span.h b/src/mesa/swrast/s_span.h index ff91768001..c5f79871f1 100644 --- a/src/mesa/swrast/s_span.h +++ b/src/mesa/swrast/s_span.h @@ -129,9 +129,8 @@ typedef struct sw_span { GLint x, y; - /** Only need to process pixels between start <= i < end */ - /** At this time, start is always zero. */ - GLuint start, end; + /** Number of fragments in the span */ + GLuint end; /** This flag indicates that mask[] array is effectively filled with ones */ GLboolean writeAll; @@ -213,7 +212,6 @@ do { \ (S).primitive = (PRIMITIVE); \ (S).interpMask = (INTERP_MASK); \ (S).arrayMask = (ARRAY_MASK); \ - (S).start = 0; \ (S).end = (END); \ (S).facing = 0; \ (S).array = SWRAST_CONTEXT(ctx)->SpanArrays; \ |