usermode/axwin4 - Blit to screen planned
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / include / video.hpp
index cf0440b..baa75d2 100644 (file)
@@ -8,13 +8,20 @@
 #ifndef _VIDEO_H_
 #define _VIDEO_H_
 
+#include <cstdint>
 #include "CConfigVideo.hpp"
 
 namespace AxWin {
-namespace Graphics {
-
-extern void Initialise(const CConfigVideo& config);
 
+class CVideo
+{
+        int    m_fd;
+       unsigned int    m_width;
+       unsigned int    m_height;
+public:
+       CVideo(const CConfigVideo& config);
+       
+       void BlitLine(const uint32_t* src, unsigned int dst_y, unsigned int dst_x, unsigned int width);
 };
 
 };

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