Changes for NVIDIA 535 and more for PIP with placebo

This commit is contained in:
jojo61
2023-09-18 11:52:03 +02:00
parent a56b3737c7
commit 45043b9ffc
3 changed files with 17 additions and 9 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.12"
static const char *const VERSION = "3.13"
#ifdef GIT_REV
"-GIT" GIT_REV
#endif
@@ -723,6 +723,12 @@ class cDummyOsd : public cOsd {
public:
cDummyOsd(int Left, int Top, uint Level) : cOsd(Left, Top, Level) {}
virtual ~cDummyOsd() {}
static void SetOsdPosition(int Left, int Top, int Width, int Height) {
(void) Left;
(void) Top;
(void) Width;
(void) Height;
}
virtual cPixmap *CreatePixmap(int Layer, const cRect &ViewPort, const cRect &DrawPort = cRect::Null) {
p = new cDummyPixmap(Layer, ViewPort, DrawPort);
return p;