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:
+5
-5
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user