mirror of
https://github.com/jojo61/vdr-plugin-softhdcuvid.git
synced 2025-12-27 07:21:07 +01:00
Enable Fastscale for vdr 2.6.6
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user