aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/frame_background_color.cpp
diff options
context:
space:
mode:
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);
}
};