// Copyright 2013 The Flutter 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 FLUTTER_SHELL_PLATFORM_ANDROID_ANDROID_SURFACE_GL_H_ #define FLUTTER_SHELL_PLATFORM_ANDROID_ANDROID_SURFACE_GL_H_ #include #include #include "flutter/fml/macros.h" #include "flutter/shell/gpu/gpu_surface_gl.h" #include "flutter/shell/platform/android/android_context_gl.h" #include "flutter/shell/platform/android/android_environment_gl.h" #include "flutter/shell/platform/android/jni/platform_view_android_jni.h" #include "flutter/shell/platform/android/surface/android_surface.h" namespace flutter { class AndroidSurfaceGL final : public GPUSurfaceGLDelegate, public AndroidSurface { public: AndroidSurfaceGL(const std::shared_ptr& android_context, std::shared_ptr jni_facade); ~AndroidSurfaceGL() override; // |AndroidSurface| bool IsValid() const override; // |AndroidSurface| std::unique_ptr CreateGPUSurface( GrDirectContext* gr_context) override; // |AndroidSurface| void TeardownOnScreenContext() override; // |AndroidSurface| bool OnScreenSurfaceResize(const SkISize& size) override; // |AndroidSurface| bool ResourceContextMakeCurrent() override; // |AndroidSurface| bool ResourceContextClearCurrent() override; // |AndroidSurface| bool SetNativeWindow(fml::RefPtr window) override; // |GPUSurfaceGLDelegate| std::unique_ptr GLContextMakeCurrent() override; // |GPUSurfaceGLDelegate| bool GLContextClearCurrent() override; // |GPUSurfaceGLDelegate| bool GLContextPresent(uint32_t fbo_id) override; // |GPUSurfaceGLDelegate| intptr_t GLContextFBO(GLFrameInfo frame_info) const override; // |GPUSurfaceGLDelegate| sk_sp GetGLInterface() const override; private: fml::RefPtr native_window_; std::unique_ptr onscreen_surface_; std::unique_ptr offscreen_surface_; //---------------------------------------------------------------------------- /// @brief Takes the super class AndroidSurface's AndroidContext and /// return a raw pointer to an AndroidContextGL. /// AndroidContextGL* GLContextPtr() const; FML_DISALLOW_COPY_AND_ASSIGN(AndroidSurfaceGL); }; } // namespace flutter #endif // FLUTTER_SHELL_PLATFORM_ANDROID_ANDROID_SURFACE_GL_H_