diff options
author | Brian McGroarty <soft@lindenlab.com> | 2008-08-25 15:24:10 +0000 |
---|---|---|
committer | Brian McGroarty <soft@lindenlab.com> | 2008-08-25 15:24:10 +0000 |
commit | 0ae35124549a1fab117fa6631fc8adc54f0501b8 (patch) | |
tree | e9c5beb1d5b7a3fcc69bc121d9f7b5a2c5141b89 /indra/llrender | |
parent | cb7abfd595a0be6a36dd3ad8dbec0d9f053210a6 (diff) |
Fix gcc4 with proper Linden-canonical struct definitions
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/llgl.h | 4 | ||||
-rw-r--r-- | indra/llrender/llrender.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/indra/llrender/llgl.h b/indra/llrender/llgl.h index f387b7b179..cff54cc342 100644 --- a/indra/llrender/llgl.h +++ b/indra/llrender/llgl.h @@ -318,11 +318,11 @@ public: class LLGLNamePool { public: - typedef struct + struct NameEntry { GLuint name; BOOL used; - } NameEntry; + }; struct CompareUsed { 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: |