Usermode/AxWin4 - Slowly implementing
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / CSurface.cpp
index a7206b6..d52298c 100644 (file)
@@ -6,10 +6,11 @@
  * - Window
  */
 #include <CSurface.hpp>
+#include <cassert>
 
 namespace AxWin {
 
-CSurface::CSurface(unsigned int x, unsigned int y, unsigned int w, unsigned int h):
+CSurface::CSurface(int x, int y, unsigned int w, unsigned int h):
        m_rect(x,y, w,h)
 {
 }
@@ -18,6 +19,11 @@ CSurface::~CSurface()
 {
 }
 
+void CSurface::Resize(unsigned int W, unsigned int H)
+{
+       assert(!"TODO: CSurface::Resize");
+}
+
 const uint32_t* CSurface::GetScanline(unsigned int row, unsigned int x_ofs) const
 {
        return 0;

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