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

Unified Diff: ui/gl/gl_surface_egl_x11.h

Issue 1480333002: egl/x11: Created a child window to control resizes and prevent flashes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved X11 specific parts to their own subclass Created 5 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
Index: ui/gl/gl_surface_egl_x11.h
diff --git a/ui/gl/gl_surface_egl_x11.h b/ui/gl/gl_surface_egl_x11.h
new file mode 100644
index 0000000000000000000000000000000000000000..3529e77a57c3b804cffad7b1c1400c254ab48108
--- /dev/null
+++ b/ui/gl/gl_surface_egl_x11.h
@@ -0,0 +1,42 @@
+// Copyright (c) 2015 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.
+
+#ifndef UI_GL_GL_SURFACE_EGL_X11_H_
+#define UI_GL_GL_SURFACE_EGL_X11_H_
+
+#include <string>
+
+#include "base/macros.h"
+#include "ui/events/platform/platform_event_dispatcher.h"
+#include "ui/gl/gl_surface_egl.h"
+
+namespace gfx {
+
+// Encapsulates an EGL surface bound to a view using the X Window System.
+class GL_EXPORT NativeViewGLSurfaceEGLX11 : public NativeViewGLSurfaceEGL,
+ public ui::PlatformEventDispatcher {
+ public:
+ explicit NativeViewGLSurfaceEGLX11(EGLNativeWindowType window);
+
+ // NativeViewGLSurfaceEGL overrides.
+ EGLConfig GetConfig() override;
+ void Destroy() override;
+ bool Resize(const gfx::Size& size, float scale_factor) override;
+ bool InitializeNativeWindow() override;
+
+ private:
+ ~NativeViewGLSurfaceEGLX11() override;
+
+ EGLNativeWindowType parent_window_;
+
+ // PlatformEventDispatcher implementation.
+ bool CanDispatchEvent(const ui::PlatformEvent& event) override;
+ uint32_t DispatchEvent(const ui::PlatformEvent& event) override;
+
+ DISALLOW_COPY_AND_ASSIGN(NativeViewGLSurfaceEGLX11);
+};
+
+} // namespace gfx
+
+#endif // UI_GL_GL_SURFACE_EGL_X11_H_

Powered by Google App Engine
This is Rietveld 408576698