aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/frame_background_color.cpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-04-25 18:10:31 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:47 +0100
commit17b57ab41ef342ba1640921d192149865b59036e (patch)
tree113fba3b513ee057eb56df1730786bb877cf837c /src/menu/frame_background_color.cpp
parent1a8b5160d105b50f20cb3cc24443b1f41ac6c1af (diff)
downloadusdx-17b57ab41ef342ba1640921d192149865b59036e.tar.gz
usdx-17b57ab41ef342ba1640921d192149865b59036e.tar.xz
usdx-17b57ab41ef342ba1640921d192149865b59036e.zip
removed unused opengl
Diffstat (limited to '')
-rw-r--r--src/menu/frame_background_color.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/menu/frame_background_color.cpp b/src/menu/frame_background_color.cpp
index 4f37b184..18483e54 100644
--- a/src/menu/frame_background_color.cpp
+++ b/src/menu/frame_background_color.cpp
@@ -25,7 +25,6 @@
*/
#include "frame_background_color.hpp"
-#include <GL/gl.h>
namespace usdx
{
@@ -35,7 +34,5 @@ namespace usdx
void FrameBackgroundColor::draw(SDL_Surface* display) const
{
- glClearColor(color.get_red(), color.get_green(), color.get_blue(), 0);
- glClear(GL_COLOR_BUFFER_BIT or GL_DEPTH_BUFFER_BIT);
}
};