aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llrender/llrender.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llrender/llrender.h')
-rw-r--r--linden/indra/llrender/llrender.h9
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 237extern F64 gGLModelView[16];
238extern F64 gGLLastModelView[16];
239extern F64 gGLProjection[16];
240extern S32 gGLViewport[4];
236 241
237extern LLRender gGL; 242extern LLRender gGL;
238 243