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

Unified Diff: ui/gl/gl_angle_util_win.cc

Issue 2565123002: Unify code to query D3D device object from ANGLE (Closed)
Patch Set: add export Created 4 years 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 | « ui/gl/gl_angle_util_win.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_angle_util_win.cc
diff --git a/ui/gl/gl_angle_util_win.cc b/ui/gl/gl_angle_util_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4a2b37c42523017bbca07be64ef8d7a69f541e90
--- /dev/null
+++ b/ui/gl/gl_angle_util_win.cc
@@ -0,0 +1,85 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/gl/gl_angle_util_win.h"
+
+#include "base/trace_event/trace_event.h"
+#include "third_party/angle/include/EGL/egl.h"
+#include "third_party/angle/include/EGL/eglext.h"
+#include "ui/gl/gl_surface_egl.h"
+
+namespace gl {
+
+void* QueryDeviceObjectFromANGLE(int object_type) {
+ EGLDisplay egl_display = nullptr;
+ intptr_t egl_device = 0;
+ intptr_t device = 0;
+
+ {
+ TRACE_EVENT0("gpu", "QueryDeviceObjectFromANGLE. GetHardwareDisplay");
+ egl_display = gl::GLSurfaceEGL::GetHardwareDisplay();
+ }
+
+ if (!gl::GLSurfaceEGL::HasEGLExtension("EGL_EXT_device_query"))
+ return nullptr;
+
+ PFNEGLQUERYDISPLAYATTRIBEXTPROC QueryDisplayAttribEXT = nullptr;
+
+ {
+ TRACE_EVENT0("gpu", "QueryDeviceObjectFromANGLE. eglGetProcAddress");
+
+ QueryDisplayAttribEXT = reinterpret_cast<PFNEGLQUERYDISPLAYATTRIBEXTPROC>(
+ eglGetProcAddress("eglQueryDisplayAttribEXT"));
+
+ if (!QueryDisplayAttribEXT)
+ return nullptr;
+ }
+
+ PFNEGLQUERYDEVICEATTRIBEXTPROC QueryDeviceAttribEXT = nullptr;
+
+ {
+ TRACE_EVENT0("gpu", "QueryDeviceObjectFromANGLE. eglGetProcAddress");
+
+ QueryDeviceAttribEXT = reinterpret_cast<PFNEGLQUERYDEVICEATTRIBEXTPROC>(
+ eglGetProcAddress("eglQueryDeviceAttribEXT"));
+ if (!QueryDeviceAttribEXT)
+ return nullptr;
+ }
+
+ {
+ TRACE_EVENT0("gpu", "QueryDeviceObjectFromANGLE. QueryDisplayAttribEXT");
+
+ if (!QueryDisplayAttribEXT(egl_display, EGL_DEVICE_EXT, &egl_device))
+ return nullptr;
+ }
+ if (!egl_device)
+ return nullptr;
+
+ {
+ TRACE_EVENT0("gpu", "QueryDeviceObjectFromANGLE. QueryDisplayAttribEXT");
+
+ if (!QueryDeviceAttribEXT(reinterpret_cast<EGLDeviceEXT>(egl_device),
+ object_type, &device)) {
+ return nullptr;
+ }
+ }
+
+ return reinterpret_cast<void*>(device);
+}
+
+base::win::ScopedComPtr<ID3D11Device> QueryD3D11DeviceObjectFromANGLE() {
+ base::win::ScopedComPtr<ID3D11Device> d3d11_device;
+ d3d11_device = reinterpret_cast<ID3D11Device*>(
+ QueryDeviceObjectFromANGLE(EGL_D3D11_DEVICE_ANGLE));
+ return d3d11_device;
+}
+
+base::win::ScopedComPtr<IDirect3DDevice9> QueryD3D9DeviceObjectFromANGLE() {
+ base::win::ScopedComPtr<IDirect3DDevice9> d3d9_device;
+ d3d9_device = reinterpret_cast<IDirect3DDevice9*>(
+ QueryDeviceObjectFromANGLE(EGL_D3D9_DEVICE_ANGLE));
+ return d3d9_device;
+}
+
+} // namespace gl
« no previous file with comments | « ui/gl/gl_angle_util_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698