diff options
author | Karl Schultz <kschultz@freedesktop.org> | 2004-10-06 21:45:48 +0000 |
---|---|---|
committer | Karl Schultz <kschultz@freedesktop.org> | 2004-10-06 21:45:48 +0000 |
commit | 89353febc0fdb1db6ff14633da604a59eee3913a (patch) | |
tree | 12b29c5235217f626c7f1cee141e097d46d96c8f /src/mesa | |
parent | fb170c8bd71e649807a9e86e7290c973bc34b206 (diff) |
*** empty log message ***
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/swrast/s_pointtemp.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mesa/swrast/s_pointtemp.h b/src/mesa/swrast/s_pointtemp.h index de940b355c..3735e89f10 100644 --- a/src/mesa/swrast/s_pointtemp.h +++ b/src/mesa/swrast/s_pointtemp.h @@ -220,6 +220,21 @@ NAME ( GLcontext *ctx, const SWvertex *vert ) count = span->end; (void) radius; for (y = ymin; y <= ymax; y++) { + /* check if we need to flush */ + if (count + (xmax-xmin+1) >= MAX_WIDTH) { + span->end = count; +#if FLAGS & (TEXTURE | SPRITE) + if (ctx->Texture._EnabledUnits) + _swrast_write_texture_span(ctx, span); + else + _swrast_write_rgba_span(ctx, span); +#elif FLAGS & RGBA + _swrast_write_rgba_span(ctx, span); +#else + _swrast_write_index_span(ctx, span); +#endif + count = span->end = 0; + } for (x = xmin; x <= xmax; x++) { #if FLAGS & (SPRITE | TEXTURE) GLuint u; |