Changeset 193 for trunk/VUT/work/ogre_changes/RenderSystems/GL/include
- Timestamp:
- 08/03/05 14:12:41 (20 years ago)
- 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 52 52 # define APIENTRY 53 53 # endif 54 # define GL_GLEXT_LEGACY 54 55 # include <OpenGL/gl.h> 55 56 # include <OpenGL/glu.h> … … 270 271 if (errCode != GL_NO_ERROR) { \ 271 272 errString = gluErrorString (errCode); \ 272 LogManager::getSingleton().logMessage ("[GL] :" + ERROR_MSG+ \273 LogManager::getSingleton().logMessage ("[GL] :" + Ogre::String(ERROR_MSG) + \ 273 274 " : " + Ogre::String( (const char*) errString)); \ 274 275 } \ … … 282 283 errString = gluErrorString (errCode); \ 283 284 OGRE_EXCEPT (Exception::ERR_INTERNAL_ERROR, \ 284 ERROR_MSG+ \285 Ogre::String(ERROR_MSG) + \ 285 286 " : " + Ogre::String( (const char*) errString), String("")); \ 286 287 } \ -
trunk/VUT/work/ogre_changes/RenderSystems/GL/include/OgreWin32Window.h
r153 r193 40 40 bool fullScreen, const NameValuePairList *miscParams); 41 41 void destroy(void); 42 bool is Active(void) const;42 bool isVisible() const; 43 43 bool isClosed(void) const; 44 44 void reposition(int left, int top); … … 61 61 // Method for dealing with resize / move & 3d library 62 62 virtual void windowMovedOrResized(void); 63 bool isReady() const { return mReady; }64 void setReady(bool set) { mReady = set; }65 void setActive(bool set) { mActive = set; }66 63 67 64 void getCustomAttribute( const String& name, void* pData ); … … 72 69 HDC mHDC; 73 70 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; 77 73 bool mClosed; 74 int mDisplayFrequency; // fullscreen only, to restore display 78 75 Win32Context *mContext; 79 76
Note: See TracChangeset
for help on using the changeset viewer.