Skip to content

Commit 705d1e4

Browse files
committed
add missing fastDownloader line to flake.nix
1 parent f04257a commit 705d1e4

5 files changed

Lines changed: 10 additions & 0 deletions

File tree

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
rayintSource
110110
mveSource
111111
poissonReconSource
112+
fastDownscaler
112113
;
113114
};
114115

linux/flutter/generated_plugin_registrant.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@
66

77
#include "generated_plugin_registrant.h"
88

9+
#include <dynamic_color/dynamic_color_plugin.h>
910
#include <file_selector_linux/file_selector_plugin.h>
1011
#include <screen_retriever_linux/screen_retriever_linux_plugin.h>
1112
#include <system_theme/system_theme_plugin.h>
1213
#include <url_launcher_linux/url_launcher_plugin.h>
1314
#include <window_manager/window_manager_plugin.h>
1415

1516
void fl_register_plugins(FlPluginRegistry* registry) {
17+
g_autoptr(FlPluginRegistrar) dynamic_color_registrar =
18+
fl_plugin_registry_get_registrar_for_plugin(registry, "DynamicColorPlugin");
19+
dynamic_color_plugin_register_with_registrar(dynamic_color_registrar);
1620
g_autoptr(FlPluginRegistrar) file_selector_linux_registrar =
1721
fl_plugin_registry_get_registrar_for_plugin(registry, "FileSelectorPlugin");
1822
file_selector_plugin_register_with_registrar(file_selector_linux_registrar);

linux/flutter/generated_plugins.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#
44

55
list(APPEND FLUTTER_PLUGIN_LIST
6+
dynamic_color
67
file_selector_linux
78
screen_retriever_linux
89
system_theme

windows/flutter/generated_plugin_registrant.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@
66

77
#include "generated_plugin_registrant.h"
88

9+
#include <dynamic_color/dynamic_color_plugin_c_api.h>
910
#include <file_selector_windows/file_selector_windows.h>
1011
#include <screen_retriever_windows/screen_retriever_windows_plugin_c_api.h>
1112
#include <system_theme/system_theme_plugin.h>
1213
#include <url_launcher_windows/url_launcher_windows.h>
1314
#include <window_manager/window_manager_plugin.h>
1415

1516
void RegisterPlugins(flutter::PluginRegistry* registry) {
17+
DynamicColorPluginCApiRegisterWithRegistrar(
18+
registry->GetRegistrarForPlugin("DynamicColorPluginCApi"));
1619
FileSelectorWindowsRegisterWithRegistrar(
1720
registry->GetRegistrarForPlugin("FileSelectorWindows"));
1821
ScreenRetrieverWindowsPluginCApiRegisterWithRegistrar(

windows/flutter/generated_plugins.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#
44

55
list(APPEND FLUTTER_PLUGIN_LIST
6+
dynamic_color
67
file_selector_windows
78
screen_retriever_windows
89
system_theme

0 commit comments

Comments
 (0)