diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-02-28 22:30:58 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-02-28 22:30:58 +0000 |
commit | 4923e1926ad7b7eb7de017eda8e7db64d357e5c8 (patch) | |
tree | 7bd9696c56a62747e9e7c7d57295ca315dba0922 /src/mesa/main/colortab.c | |
parent | 94f9d4c0dd2b62e01032c2b0dd9b8a25466690c2 (diff) |
Remove clamp parameter from _mesa_unpack_color_span_float(). Pass the
IMAGE_CLAMP_BIT if needed.
Added ClampVertexColors and ClampFragmentColors to GLcontext in anticipation
of upcoming extensions (not fully used yet).
Diffstat (limited to 'src/mesa/main/colortab.c')
-rw-r--r-- | src/mesa/main/colortab.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/colortab.c b/src/mesa/main/colortab.c index af7aa00512..862f210bb9 100644 --- a/src/mesa/main/colortab.c +++ b/src/mesa/main/colortab.c @@ -204,8 +204,7 @@ store_colortable_entries(GLcontext *ctx, struct gl_color_table *table, tempTab, /* dest address */ format, type, data, /* src data */ &ctx->Unpack, - 0, /* transfer ops */ - GL_FALSE); /* clamping */ + IMAGE_CLAMP_BIT); /* transfer ops */ tableF = (GLfloat *) table->Table; |