support GL_ARB_texture_float

This commit is contained in:
Glenn Maynard
2007-02-24 12:33:16 +00:00
parent 0160e23705
commit d866e18ca3
5 changed files with 17 additions and 2 deletions
+2
View File
@@ -22,6 +22,7 @@ public:
void EnableDepthBuffer( bool b ) { m_bDepthBuffer = b; }
void EnableAlphaBuffer( bool b ) { m_bAlphaBuffer = b; }
void EnableFloat( bool b ) { m_bFloat = b; }
void EnablePreserveTexture( bool b ) { m_bPreserveTexture = b; }
void Create();
@@ -38,6 +39,7 @@ private:
bool m_bDepthBuffer;
bool m_bAlphaBuffer;
bool m_bFloat;
bool m_bPreserveTexture;
RString m_sTextureName;
};