Mercurial > hg > aimc
diff src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.cc @ 237:af02b6addf7a
- Added support for movies!
author | tomwalters |
---|---|
date | Thu, 21 Oct 2010 01:46:39 +0000 |
parents | ddf35dd82d63 |
children |
line wrap: on
line diff
--- a/src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.cc Tue Oct 19 19:48:37 2010 +0000 +++ b/src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.cc Thu Oct 21 01:46:39 2010 +0000 @@ -20,8 +20,8 @@ namespace aimc { -GraphicsOutputDevice::GraphicsOutputDevice(Parameters *pParam) { - m_pParam = pParam; +GraphicsOutputDevice::GraphicsOutputDevice(Parameters *parameters) { + parameters_ = parameters; } void GraphicsOutputDevice::gVertex3f(float x, @@ -49,8 +49,8 @@ void GraphicsOutputDevice::gText2f(float x, float y, - const char *sStr, - bool bRotated) { - gText3f(x, y, 0, sStr, bRotated); + const char *text_string, + bool rotated) { + gText3f(x, y, 0, text_string, rotated); } } // namespace aimc