mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-16 07:10:53 +00:00
23 lines
951 B
C
23 lines
951 B
C
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "v_video.h"
|
||
|
#include "r_data/colormaps.h"
|
||
|
|
||
|
class SWCanvas
|
||
|
{
|
||
|
public:
|
||
|
static void DrawTexture(DCanvas *canvas, FTexture *img, DrawParms &parms);
|
||
|
static void FillSimplePoly(DCanvas *canvas, FTexture *tex, FVector2 *points, int npoints,
|
||
|
double originx, double originy, double scalex, double scaley, DAngle rotation,
|
||
|
FDynamicColormap *colormap, PalEntry flatcolor, int lightlevel, int bottomclip);
|
||
|
static void DrawLine(DCanvas *canvas, int x0, int y0, int x1, int y1, int palColor, uint32 realcolor);
|
||
|
static void DrawPixel(DCanvas *canvas, int x, int y, int palColor, uint32 realcolor);
|
||
|
static void Clear(DCanvas *canvas, int left, int top, int right, int bottom, int palcolor, uint32 color);
|
||
|
static void Dim(DCanvas *canvas, PalEntry color, float damount, int x1, int y1, int w, int h);
|
||
|
|
||
|
private:
|
||
|
static void PUTTRANSDOT(DCanvas *canvas, int xx, int yy, int basecolor, int level);
|
||
|
static int PalFromRGB(uint32 rgb);
|
||
|
};
|