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

Unified Diff: gpu/config/gpu_info_collector_win.cc

Issue 1998723002: Move code in ui/gl/* from gfx:: to gl:: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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 | « gpu/config/gpu_info_collector_unittest.cc ('k') | gpu/gles2_conform_support/egl/context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_info_collector_win.cc
diff --git a/gpu/config/gpu_info_collector_win.cc b/gpu/config/gpu_info_collector_win.cc
index 4d2b28d9954416ab69d3d54c51137a7a8c0472fb..cd233a9f87bac7722a396fa0c792f43c4284b110 100644
--- a/gpu/config/gpu_info_collector_win.cc
+++ b/gpu/config/gpu_info_collector_win.cc
@@ -339,9 +339,8 @@ CollectInfoResult CollectContextGraphicsInfo(GPUInfo* gpu_info) {
// ANGLE's EGL vendor strings are of the form:
// Google, Inc. (adapter LUID: 0123456789ABCDEF)
// The LUID is optional and identifies the GPU adapter ANGLE is using.
- const char* egl_vendor = eglQueryString(
- gfx::GLSurfaceEGL::GetHardwareDisplay(),
- EGL_VENDOR);
+ const char* egl_vendor =
+ eglQueryString(gl::GLSurfaceEGL::GetHardwareDisplay(), EGL_VENDOR);
RE2::PartialMatch(egl_vendor,
" \\(adapter LUID: ([0-9A-Fa-f]{16})\\)",
RE2::Hex(&gpu_info->adapter_luid));
« no previous file with comments | « gpu/config/gpu_info_collector_unittest.cc ('k') | gpu/gles2_conform_support/egl/context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698