Enable Fastscale for vdr 2.6.6

This commit is contained in:
Joachim König
2024-01-25 13:00:58 +01:00
parent f3e5a14fdf
commit 7e387fa3f1
3 changed files with 43 additions and 16 deletions

View File

@@ -61,7 +61,7 @@ extern void ToggleLUT();
/// vdr-plugin version number.
/// Makefile extracts the version number for generating the file name
/// for the distribution archive.
static const char *const VERSION = "3.15"
static const char *const VERSION = "3.16"
#ifdef GIT_REV
"-GIT" GIT_REV
#endif
@@ -658,6 +658,20 @@ class cDummyPixmap : public cPixmap {
(void)Point;
(void)ImageHandle;
}
virtual void DrawScaledImage(const cPoint &Point, const cImage &Image, double FactorX, double FactorY, bool AntiAlias) {
(void)Point;
(void)Image;
(void)FactorX;
(void)FactorY;
(void)AntiAlias;
}
virtual void DrawScaledImage(const cPoint &Point, int ImageHandle, double FactorX, double FactorY, bool AntiAlias) {
(void)Point;
(void)ImageHandle;
(void)FactorX;
(void)FactorY;
(void)AntiAlias;
}
virtual void DrawPixel(const cPoint &Point, tColor Color) {
(void)Point;
(void)Color;