Mercurial > hg > aimc
comparison 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 |
comparison
equal
deleted
inserted
replaced
236:4fb328f81012 | 237:af02b6addf7a |
---|---|
18 #include "Support/Common.h" | 18 #include "Support/Common.h" |
19 #include "Modules/Output/Graphics/Devices/GraphicsOutputDevice.h" | 19 #include "Modules/Output/Graphics/Devices/GraphicsOutputDevice.h" |
20 | 20 |
21 namespace aimc { | 21 namespace aimc { |
22 | 22 |
23 GraphicsOutputDevice::GraphicsOutputDevice(Parameters *pParam) { | 23 GraphicsOutputDevice::GraphicsOutputDevice(Parameters *parameters) { |
24 m_pParam = pParam; | 24 parameters_ = parameters; |
25 } | 25 } |
26 | 26 |
27 void GraphicsOutputDevice::gVertex3f(float x, | 27 void GraphicsOutputDevice::gVertex3f(float x, |
28 float y, | 28 float y, |
29 float z, | 29 float z, |
47 gVertex3f(x, y, 0); | 47 gVertex3f(x, y, 0); |
48 } | 48 } |
49 | 49 |
50 void GraphicsOutputDevice::gText2f(float x, | 50 void GraphicsOutputDevice::gText2f(float x, |
51 float y, | 51 float y, |
52 const char *sStr, | 52 const char *text_string, |
53 bool bRotated) { | 53 bool rotated) { |
54 gText3f(x, y, 0, sStr, bRotated); | 54 gText3f(x, y, 0, text_string, rotated); |
55 } | 55 } |
56 } // namespace aimc | 56 } // namespace aimc |