Changeset 28753
- Timestamp:
- 11/30/08 17:06:25 (6 weeks ago)
- Files:
-
- 1 modified
-
haiku/trunk/src/kits/opengl/GLView.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
haiku/trunk/src/kits/opengl/GLView.cpp
r28525 r28753 85 85 // TODO: acquire the OpenGL API lock it on this glview 86 86 87 LockLooper(); 87 if (!LockLooper()) 88 return; 89 fDisplayLock.Lock(); 88 90 if (fRenderer) 89 91 fRenderer->LockGL(); … … 94 96 BGLView::UnlockGL() 95 97 { 98 if (!fDisplayLock.IsLocked()) 99 return; 100 fDisplayLock.Unlock(); 96 101 if (fRenderer) 97 102 fRenderer->UnlockGL();
