Skip to content

Commit 4b06d21

Browse files
authored
Remove EvasGL renderer and elementary window (#125)
1 parent 8fa1ff2 commit 4b06d21

23 files changed

+6
-2421
lines changed

flutter/shell/platform/tizen/BUILD.gn

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,23 @@ config("flutter_tizen_config") {
1919
"${sysroot_path}/usr/include/dlog",
2020
"${sysroot_path}/usr/include/ecore-1",
2121
"${sysroot_path}/usr/include/ecore-con-1",
22-
"${sysroot_path}/usr/include/ecore-evas-1",
2322
"${sysroot_path}/usr/include/ecore-file-1",
2423
"${sysroot_path}/usr/include/ecore-imf-1",
25-
"${sysroot_path}/usr/include/ecore-imf-evas-1",
2624
"${sysroot_path}/usr/include/ecore-input-1",
27-
"${sysroot_path}/usr/include/ecore-input-evas-1",
2825
"${sysroot_path}/usr/include/ecore-wayland-1",
2926
"${sysroot_path}/usr/include/ecore-wl2-1",
3027
"${sysroot_path}/usr/include/edje-1",
3128
"${sysroot_path}/usr/include/eet-1",
3229
"${sysroot_path}/usr/include/efl-1",
33-
"${sysroot_path}/usr/include/efl-extension",
3430
"${sysroot_path}/usr/include/efl-1/interfaces",
3531
"${sysroot_path}/usr/include/efreet-1",
3632
"${sysroot_path}/usr/include/eina-1",
3733
"${sysroot_path}/usr/include/eina-1/eina",
3834
"${sysroot_path}/usr/include/eldbus-1",
39-
"${sysroot_path}/usr/include/elementary-1",
4035
"${sysroot_path}/usr/include/emile-1",
4136
"${sysroot_path}/usr/include/eo-1",
4237
"${sysroot_path}/usr/include/ethumb-1",
4338
"${sysroot_path}/usr/include/ethumb-client-1",
44-
"${sysroot_path}/usr/include/evas-1",
4539
"${sysroot_path}/usr/include/feedback",
4640
"${sysroot_path}/usr/include/system",
4741
"${sysroot_path}/usr/include/tzsh",
@@ -96,15 +90,12 @@ template("embedder") {
9690
"channels/window_channel.cc",
9791
"external_texture_pixel_egl.cc",
9892
"external_texture_pixel_egl_impeller.cc",
99-
"external_texture_pixel_evas_gl.cc",
10093
"external_texture_surface_egl.cc",
10194
"external_texture_surface_egl_impeller.cc",
102-
"external_texture_surface_evas_gl.cc",
10395
"flutter_platform_node_delegate_tizen.cc",
10496
"flutter_project_bundle.cc",
10597
"flutter_tizen.cc",
10698
"flutter_tizen_display_monitor.cc",
107-
"flutter_tizen_elementary.cc",
10899
"flutter_tizen_engine.cc",
109100
"flutter_tizen_texture_registrar.cc",
110101
"flutter_tizen_view.cc",
@@ -114,12 +105,9 @@ template("embedder") {
114105
"tizen_input_method_context.cc",
115106
"tizen_renderer.cc",
116107
"tizen_renderer_egl.cc",
117-
"tizen_renderer_evas_gl.cc",
118108
"tizen_renderer_gl.cc",
119-
"tizen_view_elementary.cc",
120109
"tizen_vsync_waiter.cc",
121110
"tizen_window_ecore_wl2.cc",
122-
"tizen_window_elementary.cc",
123111
]
124112

125113
lib_dirs = [ "//engine/${target_cpu}" ]
@@ -136,16 +124,11 @@ template("embedder") {
136124
"capi-ui-efl-util",
137125
"dlog",
138126
"ecore",
139-
"ecore_evas",
140127
"ecore_imf",
141-
"ecore_imf_evas",
142128
"ecore_input",
143129
"ecore_wl2",
144-
"efl-extension",
145130
"eina",
146131
"eldbus",
147-
"elementary",
148-
"evas",
149132
"feedback",
150133
"flutter_engine",
151134
"tbm",

flutter/shell/platform/tizen/external_texture_pixel_evas_gl.cc

Lines changed: 0 additions & 72 deletions
This file was deleted.

flutter/shell/platform/tizen/external_texture_pixel_evas_gl.h

Lines changed: 0 additions & 35 deletions
This file was deleted.

flutter/shell/platform/tizen/external_texture_surface_evas_gl.cc

Lines changed: 0 additions & 118 deletions
This file was deleted.

flutter/shell/platform/tizen/external_texture_surface_evas_gl.h

Lines changed: 0 additions & 41 deletions
This file was deleted.

flutter/shell/platform/tizen/flutter_tizen.cc

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#endif
2222
#include "flutter/shell/platform/tizen/tizen_window.h"
2323
#include "flutter/shell/platform/tizen/tizen_window_ecore_wl2.h"
24-
#include "flutter/shell/platform/tizen/tizen_window_elementary.h"
2524

2625
namespace {
2726

@@ -201,18 +200,12 @@ FlutterDesktopViewRef FlutterDesktopViewCreateFromNewWindow(
201200
window_properties.height};
202201

203202
std::unique_ptr<flutter::TizenWindow> window;
204-
if (window_properties.renderer_type == FlutterDesktopRendererType::kEvasGL) {
205-
window = std::make_unique<flutter::TizenWindowElementary>(
206-
window_geometry, window_properties.transparent,
207-
window_properties.focusable, window_properties.top_level);
208-
} else {
209-
window = std::make_unique<flutter::TizenWindowEcoreWl2>(
210-
window_geometry, window_properties.transparent,
211-
window_properties.focusable, window_properties.top_level,
212-
window_properties.pointing_device_support,
213-
window_properties.floating_menu_support,
214-
window_properties.window_handle);
215-
}
203+
204+
window = std::make_unique<flutter::TizenWindowEcoreWl2>(
205+
window_geometry, window_properties.transparent,
206+
window_properties.focusable, window_properties.top_level,
207+
window_properties.pointing_device_support,
208+
window_properties.floating_menu_support, window_properties.window_handle);
216209

217210
auto view = std::make_unique<flutter::FlutterTizenView>(
218211
flutter::kImplicitViewId, std::move(window),

0 commit comments

Comments
 (0)