blob: 207f621c66bd1ebd288f5b9aae8697e2f96601b0 [file] [log] [blame]
// 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.
#ifndef FLUTTER_SHELL_PLATFORM_ANDROID_ANDROID_CONTEXT_GL_H_
#define FLUTTER_SHELL_PLATFORM_ANDROID_ANDROID_CONTEXT_GL_H_
#include "flutter/shell/common/platform_view.h"
#include "flutter/shell/platform/android/android_environment_gl.h"
#include "flutter/shell/platform/android/android_native_window.h"
#include "lib/fxl/macros.h"
#include "lib/fxl/memory/ref_counted.h"
#include "lib/fxl/memory/ref_ptr.h"
#include "third_party/skia/include/core/SkSize.h"
namespace shell {
class AndroidContextGL : public fxl::RefCountedThreadSafe<AndroidContextGL> {
public:
bool CreateWindowSurface(fxl::RefPtr<AndroidNativeWindow> window);
bool CreatePBufferSurface();
fxl::RefPtr<AndroidEnvironmentGL> Environment() const;
bool IsValid() const;
bool MakeCurrent();
bool ClearCurrent();
bool SwapBuffers();
SkISize GetSize();
bool Resize(const SkISize& size);
private:
fxl::RefPtr<AndroidEnvironmentGL> environment_;
fxl::RefPtr<AndroidNativeWindow> window_;
EGLConfig config_;
EGLSurface surface_;
EGLContext context_;
bool valid_;
AndroidContextGL(fxl::RefPtr<AndroidEnvironmentGL> env,
PlatformView::SurfaceConfig config,
const AndroidContextGL* share_context = nullptr);
~AndroidContextGL();
FRIEND_MAKE_REF_COUNTED(AndroidContextGL);
FRIEND_REF_COUNTED_THREAD_SAFE(AndroidContextGL);
FXL_DISALLOW_COPY_AND_ASSIGN(AndroidContextGL);
};
} // namespace shell
#endif // FLUTTER_SHELL_PLATFORM_ANDROID_ANDROID_CONTEXT_GL_H_