xsi_ogltexture.h Source File
 
 
 
xsi_ogltexture.h
Go to the documentation of this file.
00001 //*****************************************************************************
00011 //*****************************************************************************
00012 
00013 #if (_MSC_VER > 1000) || defined(SGI_COMPILER)
00014 #pragma once
00015 #endif
00016 
00017 #ifndef __XSIOGLTEXTURE_H__
00018 #define __XSIOGLTEXTURE_H__
00019 
00020 #include <xsi_base.h>
00021 
00022 namespace XSI {
00023 
00024 //*****************************************************************************
00066 //*****************************************************************************
00067 
00068 class SICPPSDKDECL OGLTexture : public CBase
00069 {
00070 public:
00072         OGLTexture();
00073 
00075         ~OGLTexture();
00076 
00080         OGLTexture(const CRef& in_ref);
00081 
00085         OGLTexture(const OGLTexture& in_obj);
00086 
00091         bool IsA( siClassID in_ClassID) const;
00092 
00096         siClassID GetClassID() const;
00097 
00103         OGLTexture& operator=(const OGLTexture& in_obj);
00104 
00110         OGLTexture& operator=(const CRef& in_ref);
00111 
00115         short   GetWidth() const;
00116 
00120         short   GetHeight() const;
00121 
00125         CString GetFullName() const;
00126 
00127         private:
00128         OGLTexture * operator&() const;
00129         OGLTexture * operator&();
00130 };
00131 
00132 };
00133 
00134 #endif // __XSIOGLTEXTURE_H__