feat: super resolution from kazumi/main

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-01-18 13:51:21 +08:00
parent 54cea9e5c7
commit 434a898c36
19 changed files with 3087 additions and 11 deletions

View File

@@ -0,0 +1,5 @@
enum SuperResolutionType { disable, efficiency, quality }
extension SuperResolutionTypeExt on SuperResolutionType {
String get title => ['禁用', '效率', '画质'][index];
}