From 2e02b7e555d3221752e395dc8e41f0cf65f57c70 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 29 Oct 2018 22:41:24 +0200 Subject: [PATCH] - fixed compilation of SDL backend error: unknown type name 'OpenGLFrameBuffer' --- src/posix/sdl/sdlglvideo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posix/sdl/sdlglvideo.cpp b/src/posix/sdl/sdlglvideo.cpp index b270fcdab9..6d8cbd2125 100644 --- a/src/posix/sdl/sdlglvideo.cpp +++ b/src/posix/sdl/sdlglvideo.cpp @@ -117,7 +117,7 @@ SDLGLVideo::~SDLGLVideo () DFrameBuffer *SDLGLVideo::CreateFrameBuffer () { - SystemGLFrameBuffer *fb = new OpenGLFrameBuffer(0, fullscreen); + SystemGLFrameBuffer *fb = new OpenGLRenderer::OpenGLFrameBuffer(0, fullscreen); return fb; }