mirror of
https://github.com/encounter/engine.git
synced 2026-07-10 03:18:43 -07:00
52 lines
2.0 KiB
C++
52 lines
2.0 KiB
C++
// 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_PLATFORM_VIEW_ANDROID_JNI_H_
|
|
#define FLUTTER_SHELL_PLATFORM_ANDROID_PLATFORM_VIEW_ANDROID_JNI_H_
|
|
|
|
#include <jni.h>
|
|
#include "flutter/fml/macros.h"
|
|
#include "flutter/shell/platform/android/platform_view_android.h"
|
|
|
|
namespace flutter {
|
|
|
|
void FlutterViewHandlePlatformMessage(JNIEnv* env,
|
|
jobject obj,
|
|
jstring channel,
|
|
jobject message,
|
|
jint responseId);
|
|
|
|
void FlutterViewHandlePlatformMessageResponse(JNIEnv* env,
|
|
jobject obj,
|
|
jint responseId,
|
|
jobject response);
|
|
|
|
void FlutterViewUpdateSemantics(JNIEnv* env,
|
|
jobject obj,
|
|
jobject buffer,
|
|
jobjectArray strings);
|
|
|
|
void FlutterViewUpdateCustomAccessibilityActions(JNIEnv* env,
|
|
jobject obj,
|
|
jobject buffer,
|
|
jobjectArray strings);
|
|
|
|
void FlutterViewOnFirstFrame(JNIEnv* env, jobject obj);
|
|
|
|
void FlutterViewOnPreEngineRestart(JNIEnv* env, jobject obj);
|
|
|
|
void SurfaceTextureAttachToGLContext(JNIEnv* env, jobject obj, jint textureId);
|
|
|
|
void SurfaceTextureUpdateTexImage(JNIEnv* env, jobject obj);
|
|
|
|
void SurfaceTextureGetTransformMatrix(JNIEnv* env,
|
|
jobject obj,
|
|
jfloatArray result);
|
|
|
|
void SurfaceTextureDetachFromGLContext(JNIEnv* env, jobject obj);
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_PLATFORM_ANDROID_PLATFORM_VIEW_ANDROID_JNI_H_
|