From b068b3299f12aa9b16aeab2c28a8d588487c2404 Mon Sep 17 00:00:00 2001 From: stephena Date: Wed, 7 May 2014 11:15:00 +0000 Subject: [PATCH] Removed some obsolete references to OpenGL. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2885 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- src/common/FrameBufferSDL2.hxx | 3 +-- src/emucore/OSystem.hxx | 8 ++------ 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/src/common/FrameBufferSDL2.hxx b/src/common/FrameBufferSDL2.hxx index f4184efca..e4dd5e5fe 100644 --- a/src/common/FrameBufferSDL2.hxx +++ b/src/common/FrameBufferSDL2.hxx @@ -21,7 +21,6 @@ #define FRAMEBUFFER_SDL2_HXX #include -#include class OSystem; class FBSurfaceSDL2; @@ -45,7 +44,7 @@ class FrameBufferSDL2 : public FrameBuffer public: /** - Creates a new OpenGL framebuffer + Creates a new SDL2 framebuffer */ FrameBufferSDL2(OSystem* osystem); diff --git a/src/emucore/OSystem.hxx b/src/emucore/OSystem.hxx index 8d31ef028..94b9a0eae 100644 --- a/src/emucore/OSystem.hxx +++ b/src/emucore/OSystem.hxx @@ -541,14 +541,10 @@ class OSystem private: /** - Creates the various framebuffers/renderers available in this system - (for now, that means either 'software' or 'opengl'). Note that - it will only create one type per run of Stella. + Creates the various framebuffers/renderers available in this system. + Note that it will only create one type per run of Stella. @return Success or failure of the framebuffer creation - Note that if OpenGL mode fails because OpenGL is not - available, rendering will attempt to fall back to - software mode */ FBInitStatus createFrameBuffer();