Mercurial > hg > aimc
comparison src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.cc @ 118:18237d55e346
- A few changes to get graphics working. In progress.
author | tom@acousticscale.org |
---|---|
date | Sat, 16 Oct 2010 22:27:03 +0000 |
parents | c5ac2f0c7fc5 |
children | a9cb396529c2 |
comparison
equal
deleted
inserted
replaced
117:c5ac2f0c7fc5 | 118:18237d55e346 |
---|---|
15 // See the License for the specific language governing permissions and | 15 // See the License for the specific language governing permissions and |
16 // limitations under the License. | 16 // limitations under the License. |
17 | 17 |
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 | |
21 namespace aimc { | |
20 | 22 |
21 GraphicsOutputDevice::GraphicsOutputDevice(Parameters *pParam) { | 23 GraphicsOutputDevice::GraphicsOutputDevice(Parameters *pParam) { |
22 m_pParam = pParam; | 24 m_pParam = pParam; |
23 } | 25 } |
24 | 26 |
49 float y, | 51 float y, |
50 const char *sStr, | 52 const char *sStr, |
51 bool bRotated) { | 53 bool bRotated) { |
52 gText3f(x, y, 0, sStr, bRotated); | 54 gText3f(x, y, 0, sStr, bRotated); |
53 } | 55 } |
56 } // namespace aimc |