Ignore:
Timestamp:
08/03/05 14:12:41 (19 years ago)
Author:
mattausch
Message:

changed to ogre 103
added readme

Location:
trunk/VUT/work/ogre_changes/RenderSystems/GL/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/work/ogre_changes/RenderSystems/GL/include/OgreGLPrerequisites.h

    r115 r193  
    5252#       define APIENTRY 
    5353#   endif 
     54#   define GL_GLEXT_LEGACY  
    5455#   include <OpenGL/gl.h> 
    5556#   include <OpenGL/glu.h> 
     
    270271    if (errCode != GL_NO_ERROR) {  \ 
    271272    errString = gluErrorString (errCode);  \ 
    272     LogManager::getSingleton().logMessage  ("[GL] :" + ERROR_MSG +  \ 
     273    LogManager::getSingleton().logMessage  ("[GL] :" + Ogre::String(ERROR_MSG) +  \ 
    273274    " : " + Ogre::String( (const char*) errString)); \ 
    274275        } \ 
     
    282283    errString = gluErrorString (errCode);  \ 
    283284    OGRE_EXCEPT (Exception::ERR_INTERNAL_ERROR,  \ 
    284     ERROR_MSG +  \ 
     285    Ogre::String(ERROR_MSG) +  \ 
    285286    " : " + Ogre::String( (const char*) errString), String("")); \ 
    286287        } \ 
  • trunk/VUT/work/ogre_changes/RenderSystems/GL/include/OgreWin32Window.h

    r153 r193  
    4040                    bool fullScreen, const NameValuePairList *miscParams); 
    4141        void destroy(void); 
    42         bool isActive(void) const; 
     42        bool isVisible() const; 
    4343        bool isClosed(void) const; 
    4444        void reposition(int left, int top); 
     
    6161                // Method for dealing with resize / move & 3d library 
    6262                virtual void windowMovedOrResized(void); 
    63                 bool isReady() const { return mReady; } 
    64                 void setReady(bool set) { mReady = set; } 
    65                 void setActive(bool set) { mActive = set; } 
    6663                 
    6764                void getCustomAttribute( const String& name, void* pData ); 
     
    7269                HDC             mHDC; 
    7370                HGLRC   mGlrc; 
    74                 int             mOldSwapIntervall; 
    75                 bool    mActive;                                // Is active i.e. visible 
    76                 bool    mReady;                                 // Is ready i.e. available for update 
     71        bool    mIsExternal; 
     72        bool    mSizing; 
    7773                bool    mClosed; 
     74        int     mDisplayFrequency;      // fullscreen only, to restore display 
    7875        Win32Context *mContext; 
    7976 
Note: See TracChangeset for help on using the changeset viewer.