Mercurial > hg > aimc
diff trunk/src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.h @ 399:7bfed53caacf
- A few changes to get graphics working. In progress.
author | tom@acousticscale.org |
---|---|
date | Sat, 16 Oct 2010 22:27:03 +0000 |
parents | 3ee03a6b95a0 |
children | a908972d234e |
line wrap: on
line diff
--- a/trunk/src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.h Fri Oct 15 05:46:53 2010 +0000 +++ b/trunk/src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.h Sat Oct 16 22:27:03 2010 +0000 @@ -20,6 +20,8 @@ #include "Support/Parameters.h" +namespace aimc { + /*! * \class GraphicsOutputDevice "Output/GraphicsOutputDevice.h" * \brief General output device class @@ -61,7 +63,7 @@ */ class GraphicsOutputDevice { public: - GraphicsOutputDevice(AimParameters *pParam); + GraphicsOutputDevice(Parameters *pParam); virtual ~GraphicsOutputDevice() { }; /*! \brief Initialize the module, sets up everything to Start(). @@ -182,10 +184,10 @@ //! \brief True when animation is running bool m_bRunning; //! \brief Parameter store - AimParameters *m_pParam; + Parameters *m_pParam; //! \brief Pixel Formats enum PixelFormat {AIM_PIX_FMT_RGB24_32, AIM_PIX_FMT_RGB24_24}; }; - +} // namespace aimc #endif /* __GRAPHICS_OUTPUT_DEVICE__ */