Usermode/AxWin4 - Slowly implementing
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / CSurface.cpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang)
4  *
5  * CWindow.cpp
6  * - Window
7  */
8 #include <CSurface.hpp>
9 #include <cassert>
10
11 namespace AxWin {
12
13 CSurface::CSurface(int x, int y, unsigned int w, unsigned int h):
14         m_rect(x,y, w,h)
15 {
16 }
17
18 CSurface::~CSurface()
19 {
20 }
21
22 void CSurface::Resize(unsigned int W, unsigned int H)
23 {
24         assert(!"TODO: CSurface::Resize");
25 }
26
27 const uint32_t* CSurface::GetScanline(unsigned int row, unsigned int x_ofs) const
28 {
29         return 0;
30 }
31
32
33 };      // namespace AxWin
34
35

UCC git Repository :: git.ucc.asn.au