-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flutter 2.0.1 migration issues #49
Comments
for the texture part, linux didn't handle GLES extension OES_EGL_image_external, which is an extension of GLES. so things are different. |
I don't quite understand what you mean. I told nothing about linux in the above comment. You may build the current flutter-2.0.1-tizen branch yourself and understand what the current problem is. |
sorry, it's windows, not linux. I mean windows/linux like desktop use GL instead of GLES. |
For the texture part. |
2.0.1 has landed. Actually a new hotfix (2.0.2) was released in the upstream but will not update to it since there's no or little difference. |
-Wno-psabi
) issuearmv7-linux-gnueabi
target (seebuildtools/linux-x64/clang/lib
).-Wno-non-c-typedef-for-linkage
flag, we have to remove the new flag frombuild/config/compiler/BUILD.gn
manually.TextInputModel
API changes (Separate mutators for text and selection flutter/engine#21612, Migrate TextInputPlugin API to TextRange flutter/engine#21854)flutter_texture_registrar.h
API conflictsFlutterDesktopRegistrarGetTextureRegistrar
FlutterDesktopTextureRegistrarRegisterExternalTexture
FlutterDesktopTextureRegistrarUnregisterExternalTexture
FlutterDesktopTextureRegistrarMarkExternalTextureFrameAvailable
FlutterPluginRegistrarGetTexture
FlutterRegisterExternalTexture
FlutterUnregisterExternalTexture
FlutterMarkExternalTextureFrameAvailable
flutter_tizen.cc
file, but the parametertbm_surface
was not available forFlutterDesktopTextureRegistrarMarkExternalTextureFrameAvailable
. How should we deal with this? @xiaowei-guan @bbrto21flutter_tizen.cc
)I haven't checked yet.DoneThe text was updated successfully, but these errors were encountered: