aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llcubemap.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:34 -0500
committerJacek Antonelli2008-08-15 23:45:34 -0500
commitcd17687f01420952712a500107e0f93e7ab8d5f8 (patch)
treece48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llcubemap.h
parentSecond Life viewer sources 1.19.0.5 (diff)
downloadmeta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.zip
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.gz
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.bz2
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.xz
Second Life viewer sources 1.19.1.0
Diffstat (limited to 'linden/indra/newview/llcubemap.h')
-rw-r--r--linden/indra/newview/llcubemap.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/linden/indra/newview/llcubemap.h b/linden/indra/newview/llcubemap.h
index 7a59bb3..a4d9106 100644
--- a/linden/indra/newview/llcubemap.h
+++ b/linden/indra/newview/llcubemap.h
@@ -51,7 +51,13 @@ public:
51 51
52 void bind(); 52 void bind();
53 void enable(S32 stage); 53 void enable(S32 stage);
54 void disable(); 54
55 void enableTexture(S32 stage);
56 void enableTextureCoords(S32 stage);
57
58 void disable(void);
59 void disableTexture(void);
60 void disableTextureCoords(void);
55 void setMatrix(S32 stage); 61 void setMatrix(S32 stage);
56 void restoreMatrix(); 62 void restoreMatrix();
57 63
@@ -73,6 +79,7 @@ protected:
73 LLPointer<LLImageGL> mImages[6]; 79 LLPointer<LLImageGL> mImages[6];
74 LLPointer<LLImageRaw> mRawImages[6]; 80 LLPointer<LLImageRaw> mRawImages[6];
75 S32 mTextureStage; 81 S32 mTextureStage;
82 S32 mTextureCoordStage;
76 S32 mMatrixStage; 83 S32 mMatrixStage;
77}; 84};
78 85