From: Brian Paul Date: Fri, 7 Jan 2000 05:35:37 +0000 (+0000) Subject: assigned official GL_ARB_transpose_matrix enums X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a654a5d5a99e00e1456cd04870dd6e656b558f9;p=mesa.git assigned official GL_ARB_transpose_matrix enums --- diff --git a/include/GL/gl.h b/include/GL/gl.h index b4de2330a09..5da2a230ef8 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -1,10 +1,10 @@ -/* $Id: gl.h,v 1.24 1999/12/10 19:54:50 brianp Exp $ */ +/* $Id: gl.h,v 1.25 2000/01/07 05:35:37 brianp Exp $ */ /* * Mesa 3-D graphics library * Version: 3.3 * - * Copyright (C) 1999 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -2323,11 +2323,10 @@ GLAPI void GLAPIENTRY glResizeBuffersMESA( void ); #ifndef GL_ARB_transpose_matrix #define GL_ARB_transpose_matrix 1 -/* XXX these aren't the final enum values!!! */ -#define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0xffff0001 -#define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0xffff0002 -#define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0xffff0003 -#define GL_TRANSPOSE_COLOR_MATRIX_ARB 0xffff0004 +#define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 GLAPI void GLAPIENTRY glLoadTransposeMatrixdARB( const GLdouble m[16] ); GLAPI void GLAPIENTRY glLoadTransposeMatrixfARB( const GLfloat m[16] );