Browse Source

glGet(GL_CURRENT_SECONDARY_COLOR) should return 4 values, not 3

tags/vtx-0-2-21112003-freeze
Brian Paul 23 years ago
parent
commit
7ab14f00f0
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      src/mesa/main/get.c

+ 5
- 1
src/mesa/main/get.c View File

@@ -1,4 +1,4 @@
/* $Id: get.c,v 1.103 2003/01/21 21:47:50 brianp Exp $ */
/* $Id: get.c,v 1.104 2003/01/22 00:42:45 brianp Exp $ */

/*
* Mesa 3-D graphics library
@@ -1246,6 +1246,7 @@ _mesa_GetBooleanv( GLenum pname, GLboolean *params )
params[0] = INT_TO_BOOL(ctx->Current.Attrib[VERT_ATTRIB_COLOR1][0]);
params[1] = INT_TO_BOOL(ctx->Current.Attrib[VERT_ATTRIB_COLOR1][1]);
params[2] = INT_TO_BOOL(ctx->Current.Attrib[VERT_ATTRIB_COLOR1][2]);
params[3] = INT_TO_BOOL(ctx->Current.Attrib[VERT_ATTRIB_COLOR1][3]);
break;
case GL_SECONDARY_COLOR_ARRAY_EXT:
CHECK_EXTENSION_B(EXT_secondary_color, pname);
@@ -2644,6 +2645,7 @@ _mesa_GetDoublev( GLenum pname, GLdouble *params )
params[0] = ctx->Current.Attrib[VERT_ATTRIB_COLOR1][0];
params[1] = ctx->Current.Attrib[VERT_ATTRIB_COLOR1][1];
params[2] = ctx->Current.Attrib[VERT_ATTRIB_COLOR1][2];
params[3] = ctx->Current.Attrib[VERT_ATTRIB_COLOR1][3];
break;
case GL_SECONDARY_COLOR_ARRAY_EXT:
CHECK_EXTENSION_D(EXT_secondary_color, pname);
@@ -4016,6 +4018,7 @@ _mesa_GetFloatv( GLenum pname, GLfloat *params )
params[0] = ctx->Current.Attrib[VERT_ATTRIB_COLOR1][0];
params[1] = ctx->Current.Attrib[VERT_ATTRIB_COLOR1][1];
params[2] = ctx->Current.Attrib[VERT_ATTRIB_COLOR1][2];
params[3] = ctx->Current.Attrib[VERT_ATTRIB_COLOR1][3];
break;
case GL_SECONDARY_COLOR_ARRAY_EXT:
CHECK_EXTENSION_F(EXT_secondary_color, pname);
@@ -5426,6 +5429,7 @@ _mesa_GetIntegerv( GLenum pname, GLint *params )
params[0] = FLOAT_TO_INT( (ctx->Current.Attrib[VERT_ATTRIB_COLOR1][0]) );
params[1] = FLOAT_TO_INT( (ctx->Current.Attrib[VERT_ATTRIB_COLOR1][1]) );
params[2] = FLOAT_TO_INT( (ctx->Current.Attrib[VERT_ATTRIB_COLOR1][2]) );
params[3] = FLOAT_TO_INT( (ctx->Current.Attrib[VERT_ATTRIB_COLOR1][3]) );
break;
case GL_SECONDARY_COLOR_ARRAY_EXT:
CHECK_EXTENSION_I(EXT_secondary_color, pname);

Loading…
Cancel
Save