mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-12 16:10:54 +02:00
10 lines
393 B
C++
10 lines
393 B
C++
// NewBlit.h
|
|
//
|
|
|
|
struct Image_t;
|
|
void GL_RenderImage(Image_t* image, int x, int y, int width, int height, int colorRemap = 0);
|
|
void GL_DrawText(int color, int x, int y, char* text);
|
|
void GL_FillRect(int color, int x, int y, int width, int height);
|
|
void GL_DrawLine(int color, int x, int y, int dx, int dy);
|
|
void GL_ResetClipRect(void);
|
|
void GL_SetClipRect(int x, int y, int width, int height); |