Qt tile rendering

Get rid of the no longer used 'fem' argument for Qt's tile drawing
routines.  It's incorporated in the tile index these days.
This commit is contained in:
PatR
2022-01-04 12:23:06 -08:00
parent 9d34b727e2
commit 0870fb32ac
4 changed files with 47 additions and 34 deletions
+5 -5
View File
@@ -27,14 +27,14 @@ public:
void drawGlyph(QPainter &, int glyph, int tileidx,
int pixelx, int pixely,
bool fem, bool reversed = false);
bool reversed = false);
void drawCell(QPainter &, int glyph, int tileidx,
int cellx, int celly, bool fem);
int cellx, int celly);
void drawBorderedCell(QPainter &, int glyph, int tileidx,
int cellx, int celly, int bordercode,
bool reversed, bool fem = false);
QPixmap glyph(int glyphindx, int tileidx, bool fem = false);
QPixmap reversed_pixmap(int glyphindx, int tileidx, bool fem = false);
bool reversed);
QPixmap glyph(int glyphindx, int tileidx);
QPixmap reversed_pixmap(int glyphindx, int tileidx);
private:
QImage img;