summaryrefslogtreecommitdiffstats
path: root/client/application.cpp
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-04-21 13:06:37 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-05-03 14:44:11 +0200
commite0c20725c8c7b516ed500b570fcf134534efd6b3 (patch)
treeca604891742f134e4d30390c97a3714e410fde8f /client/application.cpp
parentc1b7ecac3f51a2818bf7abd00d27f0475b507ba1 (diff)
downloadspice-e0c20725c8c7b516ed500b570fcf134534efd6b3.tar.gz
spice-e0c20725c8c7b516ed500b570fcf134534efd6b3.tar.xz
spice-e0c20725c8c7b516ed500b570fcf134534efd6b3.zip
s/USE_OGL/USE_OPENGL
This is more explicit about what it does, and not much longer
Diffstat (limited to 'client/application.cpp')
-rw-r--r--client/application.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/application.cpp b/client/application.cpp
index 1f3ad242..bc6a6ee2 100644
--- a/client/application.cpp
+++ b/client/application.cpp
@@ -35,7 +35,7 @@
#endif
#include "platform.h"
#include "red_sw_canvas.h"
-#ifdef USE_OGL
+#ifdef USE_OPENGL
#include "red_gl_canvas.h"
#endif
#include "quic.h"
@@ -2051,7 +2051,7 @@ bool Application::set_canvas_option(CmdLineParser& parser, char *val, const char
#ifdef WIN32
canvas_types["gdi"] = CANVAS_OPTION_GDI;
#endif
-#ifdef USE_OGL
+#ifdef USE_OPENGL
canvas_types["gl_fbo"] = CANVAS_OPTION_OGL_FBO;
canvas_types["gl_pbuff"] = CANVAS_OPTION_OGL_PBUFF;
#endif
@@ -2548,7 +2548,7 @@ void Application::init_globals()
SSL_load_error_strings();
sw_canvas_init();
-#ifdef USE_OGL
+#ifdef USE_OPENGL
gl_canvas_init();
#endif
quic_init();