1
0
mirror of https://github.com/jojo61/vdr-plugin-softhdcuvid.git synced 2023-10-10 13:37:41 +02:00

Fix for GLEW Version 2.2

This commit is contained in:
jojo61 2021-08-11 11:23:43 +02:00
parent eabbbcb442
commit 59a82d409e
2 changed files with 4 additions and 3 deletions

View File

@ -1806,9 +1806,10 @@ bool cOglThread::InitOpenGL(void)
GLenum err = glewInit(); GLenum err = glewInit();
if (err != GLEW_OK) { if (err != GLEW_OK) {
esyslog("[softhddev]glewInit failed, aborting\n"); esyslog("[softhddev]glewInit failed: %s Using Version: %s\n",glewGetErrorString(err),glewGetString(GLEW_VERSION));
return false; // return false;
} }
#endif #endif
VertexBuffers[vbText]->EnableBlending(); VertexBuffers[vbText]->EnableBlending();

View File

@ -63,7 +63,7 @@ extern void ToggleLUT();
/// vdr-plugin version number. /// vdr-plugin version number.
/// Makefile extracts the version number for generating the file name /// Makefile extracts the version number for generating the file name
/// for the distribution archive. /// for the distribution archive.
static const char *const VERSION = "3.5.1" static const char *const VERSION = "3.5.2"
#ifdef GIT_REV #ifdef GIT_REV
"-GIT" GIT_REV "-GIT" GIT_REV
#endif #endif