mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
r_alias.c: change *AttrIndex into macros instead of static const vars.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1443 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
c671916fc7
commit
be437dd258
1 changed files with 5 additions and 5 deletions
|
@ -79,11 +79,11 @@ static GLuint fullbrightTexLoc;
|
|||
static GLuint useFullbrightTexLoc;
|
||||
static GLuint useOverbrightLoc;
|
||||
|
||||
static const GLint pose1VertexAttrIndex = 0;
|
||||
static const GLint pose1NormalAttrIndex = 1;
|
||||
static const GLint pose2VertexAttrIndex = 2;
|
||||
static const GLint pose2NormalAttrIndex = 3;
|
||||
static const GLint texCoordsAttrIndex = 4;
|
||||
#define pose1VertexAttrIndex 0
|
||||
#define pose1NormalAttrIndex 1
|
||||
#define pose2VertexAttrIndex 2
|
||||
#define pose2NormalAttrIndex 3
|
||||
#define texCoordsAttrIndex 4
|
||||
|
||||
/*
|
||||
=============
|
||||
|
|
Loading…
Reference in a new issue