mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed flickering if subtitles are active while the OSD demo is running
This commit is contained in:
parent
5b65ff5b37
commit
719b46b305
3
HISTORY
3
HISTORY
@ -7870,7 +7870,7 @@ Video Disk Recorder Revision History
|
|||||||
and also to use the correct directory with --edit (the latter reported by Marko
|
and also to use the correct directory with --edit (the latter reported by Marko
|
||||||
Mäkelä).
|
Mäkelä).
|
||||||
|
|
||||||
2014-01-30: Version 2.0.6
|
2014-02-04: Version 2.0.6
|
||||||
|
|
||||||
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
||||||
- cFont::CreateFont() now returns a dummy font in case there are no fonts installed.
|
- cFont::CreateFont() now returns a dummy font in case there are no fonts installed.
|
||||||
@ -7888,3 +7888,4 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed sorting recordings by time in the Recordings menu if "Setup/OSD/Recording
|
- Fixed sorting recordings by time in the Recordings menu if "Setup/OSD/Recording
|
||||||
directories" is set to "no".
|
directories" is set to "no".
|
||||||
- Fixed clearing non-editable members in the channel editor (thanks to Rolf Ahrenberg).
|
- Fixed clearing non-editable members in the channel editor (thanks to Rolf Ahrenberg).
|
||||||
|
- Fixed flickering if subtitles are active while the OSD demo is running.
|
||||||
|
@ -59,3 +59,7 @@ VDR Plugin 'osddemo' Revision History
|
|||||||
2013-03-31: Version 2.0.0
|
2013-03-31: Version 2.0.0
|
||||||
|
|
||||||
- Official release.
|
- Official release.
|
||||||
|
|
||||||
|
2014-02-04: Version 2.0.1
|
||||||
|
|
||||||
|
- Fixed flickering if subtitles are active while the OSD demo is running.
|
||||||
|
@ -3,13 +3,13 @@
|
|||||||
*
|
*
|
||||||
* See the README file for copyright information and how to reach the author.
|
* See the README file for copyright information and how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: osddemo.c 2.12 2013/03/31 09:30:18 kls Exp $
|
* $Id: osddemo.c 2.12.1.1 2014/02/04 10:48:10 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <vdr/osd.h>
|
#include <vdr/osd.h>
|
||||||
#include <vdr/plugin.h>
|
#include <vdr/plugin.h>
|
||||||
|
|
||||||
static const char *VERSION = "2.0.0";
|
static const char *VERSION = "2.0.1";
|
||||||
static const char *DESCRIPTION = "Demo of arbitrary OSD setup";
|
static const char *DESCRIPTION = "Demo of arbitrary OSD setup";
|
||||||
static const char *MAINMENUENTRY = "Osd Demo";
|
static const char *MAINMENUENTRY = "Osd Demo";
|
||||||
|
|
||||||
@ -119,7 +119,7 @@ cLineGame::~cLineGame()
|
|||||||
|
|
||||||
void cLineGame::Show(void)
|
void cLineGame::Show(void)
|
||||||
{
|
{
|
||||||
osd = cOsdProvider::NewOsd(cOsd::OsdLeft(), cOsd::OsdTop(), 50);
|
osd = cOsdProvider::NewOsd(cOsd::OsdLeft(), cOsd::OsdTop());
|
||||||
if (osd) {
|
if (osd) {
|
||||||
int x1 = cOsd::OsdWidth() - 1;
|
int x1 = cOsd::OsdWidth() - 1;
|
||||||
int y1 = cOsd::OsdHeight() - 1;
|
int y1 = cOsd::OsdHeight() - 1;
|
||||||
@ -496,7 +496,7 @@ bool cTrueColorDemo::SetArea(void)
|
|||||||
|
|
||||||
void cTrueColorDemo::Show(void)
|
void cTrueColorDemo::Show(void)
|
||||||
{
|
{
|
||||||
osd = cOsdProvider::NewOsd(cOsd::OsdLeft(), cOsd::OsdTop(), 50);
|
osd = cOsdProvider::NewOsd(cOsd::OsdLeft(), cOsd::OsdTop());
|
||||||
if (osd) {
|
if (osd) {
|
||||||
if (SetArea()) {
|
if (SetArea()) {
|
||||||
osd->DrawRectangle(0, 0, osd->Width() - 1, osd->Height() - 1, clrGray50);
|
osd->DrawRectangle(0, 0, osd->Width() - 1, osd->Height() - 1, clrGray50);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user