mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Re-land "Support multiple shells in a single process. (#4932)" This reverts commit 723c7d01439da4261bc836075fb55651ce9e7f03.
57 lines
1.3 KiB
C++
57 lines
1.3 KiB
C++
// Copyright 2017 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_EXTERNAL_TEXTURE_GL_H_
|
|
#define FLUTTER_SHELL_PLATFORM_ANDROID_EXTERNAL_TEXTURE_GL_H_
|
|
|
|
#include <GLES/gl.h>
|
|
#include "flutter/flow/texture.h"
|
|
#include "flutter/fml/platform/android/jni_weak_ref.h"
|
|
|
|
namespace shell {
|
|
|
|
class AndroidExternalTextureGL : public flow::Texture {
|
|
public:
|
|
AndroidExternalTextureGL(
|
|
int64_t id,
|
|
const fml::jni::JavaObjectWeakGlobalRef& surfaceTexture);
|
|
|
|
~AndroidExternalTextureGL() override;
|
|
|
|
virtual void Paint(SkCanvas& canvas, const SkRect& bounds) override;
|
|
|
|
virtual void OnGrContextCreated() override;
|
|
|
|
virtual void OnGrContextDestroyed() override;
|
|
|
|
void MarkNewFrameAvailable() override;
|
|
|
|
private:
|
|
void Attach(jint textureName);
|
|
|
|
void Update();
|
|
|
|
void Detach();
|
|
|
|
void UpdateTransform();
|
|
|
|
enum class AttachmentState { uninitialized, attached, detached };
|
|
|
|
fml::jni::JavaObjectWeakGlobalRef surface_texture_;
|
|
|
|
AttachmentState state_ = AttachmentState::uninitialized;
|
|
|
|
bool new_frame_ready_ = false;
|
|
|
|
GLuint texture_name_ = 0;
|
|
|
|
SkMatrix transform;
|
|
|
|
FXL_DISALLOW_COPY_AND_ASSIGN(AndroidExternalTextureGL);
|
|
};
|
|
|
|
} // namespace shell
|
|
|
|
#endif // FLUTTER_SHELL_PLATFORM_ANDROID_EXTERNAL_TEXTURE_GL_H_
|