From f2f33507748260fe766742a0ed8b02c49d548bd8 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 23 Apr 2004 17:58:06 +0000 Subject: GL_DOUBLE doesn't follow GL_FLOAT, fix indexing (Keith Harrison) --- src/mesa/main/api_arrayelt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/main/api_arrayelt.c') diff --git a/src/mesa/main/api_arrayelt.c b/src/mesa/main/api_arrayelt.c index b375828d03..8e1d17d503 100644 --- a/src/mesa/main/api_arrayelt.c +++ b/src/mesa/main/api_arrayelt.c @@ -60,9 +60,9 @@ typedef struct { /* * Convert GL_BYTE, GL_UNSIGNED_BYTE, .. GL_DOUBLE into an integer * in the range [0, 7]. Luckily these type tokens are sequentially - * numbered in gl.h + * numbered in gl.h, except for GL_DOUBLE. */ -#define TYPE_IDX(t) ((t) & 0xf) +#define TYPE_IDX(t) ( (t) == GL_DOUBLE ? 7 : (t) & 7 ) static array_func ColorFuncs[2][8] = { -- cgit v1.2.3