forked from KolibriOS/kolibrios
15 lines
323 B
C
15 lines
323 B
C
|
|
||
|
class CKosRender
|
||
|
{
|
||
|
public:
|
||
|
RGB *buffer;
|
||
|
int width;
|
||
|
int height;
|
||
|
CKosRender(int width, int height);
|
||
|
~CKosRender(void);
|
||
|
|
||
|
void Draw(Point position);
|
||
|
void RenderImg(RGB *img, Point position, int width, int height);
|
||
|
int getPixel(int x, int y);
|
||
|
// void DrawImage(CKosImage *img, int x, int y, int angle);
|
||
|
};
|