diff options
Diffstat (limited to 'linden/indra/llrender/llrender.h')
-rw-r--r-- | linden/indra/llrender/llrender.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/linden/indra/llrender/llrender.h b/linden/indra/llrender/llrender.h index 03280fe..15360a3 100644 --- a/linden/indra/llrender/llrender.h +++ b/linden/indra/llrender/llrender.h | |||
@@ -176,8 +176,10 @@ public: | |||
176 | 176 | ||
177 | LLRender(); | 177 | LLRender(); |
178 | ~LLRender(); | 178 | ~LLRender(); |
179 | 179 | void shutdown(); | |
180 | |||
180 | void translatef(const GLfloat& x, const GLfloat& y, const GLfloat& z); | 181 | void translatef(const GLfloat& x, const GLfloat& y, const GLfloat& z); |
182 | void scalef(const GLfloat& x, const GLfloat& y, const GLfloat& z); | ||
181 | void pushMatrix(); | 183 | void pushMatrix(); |
182 | void popMatrix(); | 184 | void popMatrix(); |
183 | 185 | ||
@@ -232,7 +234,10 @@ private: | |||
232 | std::vector<LLTexUnit*> mTexUnits; | 234 | std::vector<LLTexUnit*> mTexUnits; |
233 | }; | 235 | }; |
234 | 236 | ||
235 | 237 | extern F64 gGLModelView[16]; | |
238 | extern F64 gGLLastModelView[16]; | ||
239 | extern F64 gGLProjection[16]; | ||
240 | extern S32 gGLViewport[4]; | ||
236 | 241 | ||
237 | extern LLRender gGL; | 242 | extern LLRender gGL; |
238 | 243 | ||