// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_OZONE_COMMON_NATIVE_PIXMAP_EGL_BINDING_H_ #define UI_OZONE_COMMON_NATIVE_PIXMAP_EGL_BINDING_H_ #include <memory> #include "base/threading/thread_checker.h" #include "ui/gfx/color_space.h" #include "ui/gfx/native_pixmap.h" #include "ui/gl/scoped_egl_image.h" #include "ui/ozone/public/native_pixmap_gl_binding.h" namespace ui { // A binding maintained between NativePixmap and GL Textures in Ozone. class NativePixmapEGLBinding : public NativePixmapGLBinding { … }; } // namespace ui #endif // UI_OZONE_COMMON_NATIVE_PIXMAP_EGL_BINDING_H_