summaryrefslogtreecommitdiff
path: root/indra/llrender/llrender.h
diff options
context:
space:
mode:
authorBrian McGroarty <soft@lindenlab.com>2008-08-25 15:24:10 +0000
committerBrian McGroarty <soft@lindenlab.com>2008-08-25 15:24:10 +0000
commit0ae35124549a1fab117fa6631fc8adc54f0501b8 (patch)
treee9c5beb1d5b7a3fcc69bc121d9f7b5a2c5141b89 /indra/llrender/llrender.h
parentcb7abfd595a0be6a36dd3ad8dbec0d9f053210a6 (diff)
Fix gcc4 with proper Linden-canonical struct definitions
Diffstat (limited to 'indra/llrender/llrender.h')
-rw-r--r--indra/llrender/llrender.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llrender/llrender.h b/indra/llrender/llrender.h
index 7ad2bca27c..7896f6c922 100644
--- a/indra/llrender/llrender.h
+++ b/indra/llrender/llrender.h
@@ -213,12 +213,12 @@ public:
LLTexUnit* getTexUnit(U32 index);
- typedef struct
+ struct Vertex
{
GLfloat v[3];
GLubyte c[4];
GLfloat uv[2];
- } Vertex;
+ };
public: