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

Unified Diff: client/deps/glbench/src/egl_stuff.cc

Issue 1208001: Renamed globals xlib_* to g_xlib_*. (Closed)
Patch Set: Created 10 years, 9 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
« no previous file with comments | « no previous file | client/deps/glbench/src/glx_stuff.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/glbench/src/egl_stuff.cc
diff --git a/client/deps/glbench/src/egl_stuff.cc b/client/deps/glbench/src/egl_stuff.cc
index 088df2a250377a1247c51bb46872760237454c8c..0887cc0aad2837da84b85f9f5d768ba9dcb974c3 100644
--- a/client/deps/glbench/src/egl_stuff.cc
+++ b/client/deps/glbench/src/egl_stuff.cc
@@ -22,7 +22,7 @@ bool Init() {
return false;
EGLNativeWindowType native_window =
- static_cast<EGLNativeWindowType>(xlib_window);
+ static_cast<EGLNativeWindowType>(g_xlib_window);
egl_surface = eglCreateWindowSurface(egl_display, egl_config,
native_window, NULL);
CHECK_EGL();
@@ -41,7 +41,7 @@ VisualID GetVisualID() {
};
EGLNativeDisplayType native_display =
- static_cast<EGLNativeDisplayType>(xlib_display);
+ static_cast<EGLNativeDisplayType>(g_xlib_display);
EGLDisplay egl_display = eglGetDisplay(native_display);
CHECK_EGL();
« no previous file with comments | « no previous file | client/deps/glbench/src/glx_stuff.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698