usermode/axwin4 - Blit to screen planned
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / include / video.hpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang) 
4  *
5  * video.hpp
6  * - Graphics Interface Header
7  */
8 #ifndef _VIDEO_H_
9 #define _VIDEO_H_
10
11 #include <cstdint>
12 #include "CConfigVideo.hpp"
13
14 namespace AxWin {
15
16 class CVideo
17 {
18          int    m_fd;
19         unsigned int    m_width;
20         unsigned int    m_height;
21 public:
22         CVideo(const CConfigVideo& config);
23         
24         void BlitLine(const uint32_t* src, unsigned int dst_y, unsigned int dst_x, unsigned int width);
25 };
26
27 };
28
29 #endif
30

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