Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_Context.h
| Show All 27 Lines | |||||
| /** \file ghost/intern/GHOST_Context.h | /** \file ghost/intern/GHOST_Context.h | ||||
| * \ingroup GHOST | * \ingroup GHOST | ||||
| * Declaration of GHOST_Context class. | * Declaration of GHOST_Context class. | ||||
| */ | */ | ||||
| #ifndef __GHOST_CONTEXT_H__ | #ifndef __GHOST_CONTEXT_H__ | ||||
| #define __GHOST_CONTEXT_H__ | #define __GHOST_CONTEXT_H__ | ||||
| #include "GHOST_IContext.h" | |||||
| #include "GHOST_Types.h" | #include "GHOST_Types.h" | ||||
| #include "glew-mx.h" | #include "glew-mx.h" | ||||
| #include <cstdlib> // for NULL | #include <cstdlib> // for NULL | ||||
| class GHOST_Context | class GHOST_Context : public GHOST_IContext | ||||
| { | { | ||||
| public: | public: | ||||
| /** | /** | ||||
| * Constructor. | * Constructor. | ||||
| * \param stereoVisual Stereo visual for quad buffered stereo. | * \param stereoVisual Stereo visual for quad buffered stereo. | ||||
| * \param numOfAASamples Number of samples used for AA (zero if no AA) | * \param numOfAASamples Number of samples used for AA (zero if no AA) | ||||
| */ | */ | ||||
| GHOST_Context(bool stereoVisual, GHOST_TUns16 numOfAASamples) | GHOST_Context(bool stereoVisual, GHOST_TUns16 numOfAASamples) | ||||
| ▲ Show 20 Lines • Show All 101 Lines • Show Last 20 Lines | |||||