|
9 | 9 | #include "flutter/shell/platform/common/cpp/client_wrapper/include/flutter/standard_message_codec.h"
|
10 | 10 | #include "flutter/shell/platform/common/cpp/incoming_message_dispatcher.h"
|
11 | 11 | #include "flutter/shell/platform/tizen/public/flutter_platform_view.h"
|
12 |
| -#include "flutter/shell/platform/tizen/public/flutter_texture_registrar.h" |
| 12 | +#include "flutter/shell/platform/tizen/public/flutter_tizen_texture_registrar.h" |
13 | 13 | #include "flutter/shell/platform/tizen/tizen_embedder_engine.h"
|
14 | 14 | #include "flutter/shell/platform/tizen/tizen_log.h"
|
15 | 15 |
|
@@ -215,3 +215,28 @@ void FlutterRegisterViewFactory(
|
215 | 215 | std::pair<std::string, std::unique_ptr<PlatformViewFactory>>(
|
216 | 216 | view_type, std::move(view_factory)));
|
217 | 217 | }
|
| 218 | + |
| 219 | +FlutterDesktopTextureRegistrarRef FlutterDesktopRegistrarGetTextureRegistrar( |
| 220 | + FlutterDesktopPluginRegistrarRef registrar) { |
| 221 | + FT_LOGE("Tizen DesktopTexture support is not implemented yet."); |
| 222 | + return nullptr; |
| 223 | +} |
| 224 | + |
| 225 | +int64_t FlutterDesktopTextureRegistrarRegisterExternalTexture( |
| 226 | + FlutterDesktopTextureRegistrarRef texture_registrar, |
| 227 | + const FlutterDesktopTextureInfo* texture_info) { |
| 228 | + FT_LOGE("Tizen DesktopTexture support is not implemented yet."); |
| 229 | + return -1; |
| 230 | +} |
| 231 | + |
| 232 | +bool FlutterDesktopTextureRegistrarUnregisterExternalTexture( |
| 233 | + FlutterDesktopTextureRegistrarRef texture_registrar, int64_t texture_id) { |
| 234 | + FT_LOGE("Tizen DesktopTexture support is not implemented yet."); |
| 235 | + return false; |
| 236 | +} |
| 237 | + |
| 238 | +bool FlutterDesktopTextureRegistrarMarkExternalTextureFrameAvailable( |
| 239 | + FlutterDesktopTextureRegistrarRef texture_registrar, int64_t texture_id) { |
| 240 | + FT_LOGE("Tizen DesktopTexture support is not implemented yet."); |
| 241 | + return false; |
| 242 | +} |
0 commit comments