Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: core/cross/gl/renderer_gl.cc

Issue 159168: This fixes a number of things that are warnings in the Mac compiler.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: core/cross/gl/renderer_gl.cc
===================================================================
--- core/cross/gl/renderer_gl.cc (revision 21208)
+++ core/cross/gl/renderer_gl.cc (working copy)
@@ -528,19 +528,19 @@
RendererGL::RendererGL(ServiceLocator* service_locator)
: Renderer(service_locator),
semantic_manager_(service_locator),
-#ifdef OS_MACOSX
- mac_agl_context_(0),
- mac_cgl_context_(0),
-#endif
#ifdef OS_WIN
gl_context_(NULL),
#endif
+ fullscreen_(0),
#ifdef OS_LINUX
display_(NULL),
window_(0),
context_(0),
#endif
- fullscreen_(0),
+#ifdef OS_MACOSX
+ mac_agl_context_(0),
+ mac_cgl_context_(0),
+#endif
render_surface_framebuffer_(0),
cg_context_(NULL),
alpha_function_ref_changed_(true),

Powered by Google App Engine
This is Rietveld 408576698