40 lines
938 B
Plaintext
40 lines
938 B
Plaintext
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file cocoaGraphicsStateGuardian.I
|
|
* @author rdb
|
|
* @date 2012-05-14
|
|
*/
|
|
|
|
/**
|
|
* Gets the FrameBufferProperties for all windows and buffers that use this
|
|
* GSG.
|
|
*/
|
|
INLINE const FrameBufferProperties &CocoaGraphicsStateGuardian::
|
|
get_fb_properties() const {
|
|
return _fbprops;
|
|
}
|
|
|
|
/**
|
|
* Locks the context.
|
|
*/
|
|
INLINE void CocoaGraphicsStateGuardian::
|
|
lock_context() {
|
|
nassertv(_context != nil);
|
|
CGLLockContext((CGLContextObj) [_context CGLContextObj]);
|
|
}
|
|
|
|
/**
|
|
* Unlocks the context.
|
|
*/
|
|
INLINE void CocoaGraphicsStateGuardian::
|
|
unlock_context() {
|
|
nassertv(_context != nil);
|
|
CGLUnlockContext((CGLContextObj) [_context CGLContextObj]);
|
|
}
|