From 59a82d409eea64ca0d471683f7c05bb63503b10e Mon Sep 17 00:00:00 2001 From: jojo61 Date: Wed, 11 Aug 2021 11:23:43 +0200 Subject: [PATCH] Fix for GLEW Version 2.2 --- openglosd.cpp | 5 +++-- softhdcuvid.cpp | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/openglosd.cpp b/openglosd.cpp index 72d444e..ab0905c 100644 --- a/openglosd.cpp +++ b/openglosd.cpp @@ -1806,9 +1806,10 @@ bool cOglThread::InitOpenGL(void) GLenum err = glewInit(); if (err != GLEW_OK) { - esyslog("[softhddev]glewInit failed, aborting\n"); - return false; + esyslog("[softhddev]glewInit failed: %s Using Version: %s\n",glewGetErrorString(err),glewGetString(GLEW_VERSION)); +// return false; } + #endif VertexBuffers[vbText]->EnableBlending(); diff --git a/softhdcuvid.cpp b/softhdcuvid.cpp index 7d60cbc..7362a5d 100644 --- a/softhdcuvid.cpp +++ b/softhdcuvid.cpp @@ -63,7 +63,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.5.1" +static const char *const VERSION = "3.5.2" #ifdef GIT_REV "-GIT" GIT_REV #endif