forked from KolibriOS/kolibrios
fb06cf5f79
git-svn-id: svn://kolibrios.org@5276 a494cfbc-eb01-0410-851d-a64ba20cac60
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);
|
|
}; |