docs: 讲述 Magpie 和 Lossless Scaling 的纠葛

This commit is contained in:
刘旭 2023-03-15 11:06:45 +08:00
commit 3282dfbdeb
13 changed files with 39 additions and 31 deletions

View file

@ -24,6 +24,6 @@ In order to compile Magpie, you need to first install:
2. Open the Magpie.sln in the root directory using Visual Studio 2022. This solution contains multiple projects, among which the "Magpie" project is the program's entry point. It should already be the startup project, but if it isn't, please set it manually.
3. First, build the CONAN_INSTALL project, which will install the dependencies.
3. First, build the "CONAN_INSTALL" project, which will install the dependencies.
5. Compile and run Magpie.
4. Compile and run Magpie.

View file

@ -38,3 +38,11 @@ Magpie 显示的是自己的帧率而不是游戏的,基于非侵入性原则
### 是否支持触控?
不支持。支持触控要求 Magpie 拥有相当高的权限,这对一般用户来说是不可接受的。在 [#218 (comment)](https://github.com/Blinue/Magpie/issues/218#issuecomment-980506414) 下载支持触控的版本。
### Magpie 和 Lossless Scaling 有何关系?
[Lossless Scaling](https://store.steampowered.com/app/993090/Lossless_Scaling/) 是 Steam 上的一款收费软件,类似于 Magpie。Magpie 于 2021 年 2 月问世,当时市面上的窗口缩放软件(如 [Integer Scaler](https://tanalin.com/en/projects/integer-scaler/) 和 Lossless Scaling仅支持简单的缩放算法如最近邻缩放和整数倍缩放。这些软件的核心功能使用 [Magnification API](https://learn.microsoft.com/en-us/windows/win32/api/_magapi/) 实现,因此存在很大的局限性。
为了支持更高级的缩放算法,我开发并开源了 Magpie它采用了完全不同的方式来实现缩放。最初Magpie 仅支持 Anime4K、Lanczos、Adaptive Sharpen 等算法。在用户的反馈下Magpie 在 [2021 年 7 月](https://github.com/Blinue/Magpie/commit/7f6c66f3b47ccd64da41d298faa7a8e185bd5299)加入了对 FSR 的支持。不久之后Lossless Scaling 推出了 1.4.0 版本,采用与 Magpie 类似的方式支持 FSR。
现在Magpie 和 Lossless Scaling 有很大的不同。Magpie 的重点是可用性和支持更多的缩放算法,而 Lossless Scaling 则主要聚焦于提高 3D 游戏的性能。

15
docs/Home (EN).md Normal file
View file

@ -0,0 +1,15 @@
# Magpie Wiki
Welcome to the Magpie Wiki. Please read [Contributing](https://github.com/Blinue/Magpie/blob/main/CONTRIBUTING_EN.md) if you'd like to contribute the the documentations.
[FAQ](https://github.com/Blinue/Magpie/wiki/FAQ%20(EN))
[Compilation guide](https://github.com/Blinue/Magpie/wiki/Compilation%20guide)
[Introduction to built-in effects](https://github.com/Blinue/Magpie/wiki/Introduction%20to%20built-in%20effects)
[MagpieFX](https://github.com/Blinue/Magpie/wiki/MagpieFX%20(EN))
[Performance optimization](https://github.com/Blinue/Magpie/wiki/Performance%20optimization)
[Comparison of capture methods](https://github.com/Blinue/Magpie/wiki/Comparison%20of%20capture%20methods)

View file

@ -2,16 +2,16 @@
欢迎来到 Magpie Wiki。如果你想贡献文档请阅读[贡献指南](https://github.com/Blinue/Magpie/blob/main/CONTRIBUTING.md#%E6%88%91%E6%83%B3%E8%B4%A1%E7%8C%AE%E6%96%87%E6%A1%A3-)。
[English version](https://github.com/Blinue/Magpie/wiki/Home_EN)
[English version](https://github.com/Blinue/Magpie/wiki/Home%20(EN))
[FAQ](https://github.com/Blinue/Magpie/wiki/FAQ)
[编译指南](https://github.com/Blinue/Magpie/wiki/%E7%BC%96%E8%AF%91%E6%8C%87%E5%8D%97)
[编译指南](https://github.com/Blinue/Magpie/wiki/编译指南)
[自定义缩放配置](https://github.com/Blinue/Magpie/wiki/%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BC%A9%E6%94%BE%E9%85%8D%E7%BD%AE)
[内置效果介绍](https://github.com/Blinue/Magpie/wiki/内置效果介绍)
[自定义效果MagpieFX](https://github.com/Blinue/Magpie/wiki/%E8%87%AA%E5%AE%9A%E4%B9%89%E6%95%88%E6%9E%9C%EF%BC%88MagpieFX%EF%BC%89)
[MagpieFX](https://github.com/Blinue/Magpie/wiki/MagpieFX)
[性能优化建议](https://github.com/Blinue/Magpie/wiki/%E6%80%A7%E8%83%BD%E4%BC%98%E5%8C%96%E5%BB%BA%E8%AE%AE)
[性能优化建议](https://github.com/Blinue/Magpie/wiki/性能优化建议)
[捕获模式对比](https://github.com/Blinue/Magpie/wiki/捕获模式对比)
[捕获方式对比](https://github.com/Blinue/Magpie/wiki/捕获方式对比)

View file

@ -1,15 +0,0 @@
# Magpie Wiki
Welcome to the Magpie Wiki. Please read [Contributing](https://github.com/Blinue/Magpie/blob/main/CONTRIBUTING_EN.md) if you'd like to contribute the the documentations.
[FAQ](https://github.com/Blinue/Magpie/wiki/FAQ_EN)
[Compiling](https://github.com/Blinue/Magpie/wiki/Compiling)
[Customizing Scaling Configurations](https://github.com/Blinue/Magpie/wiki/Customizing_Scaling_Configurations)
[Customizing Effects (MagpieFX)](https://github.com/Blinue/Magpie/wiki/Customizing_Effects)
[Performance Improvements](https://github.com/Blinue/Magpie/wiki/Performance_Improvements)
[Capture Modes](https://github.com/Blinue/Magpie/wiki/Capture_Modes)

View file

@ -1,15 +1,15 @@
- [维基主页](https://github.com/Blinue/Magpie/wiki/)
- [FAQ](https://github.com/Blinue/Magpie/wiki/FAQ)
- [编译指南](https://github.com/Blinue/Magpie/wiki/编译指南)
- [效果介绍](https://github.com/Blinue/Magpie/wiki/效果介绍)
- [内置效果介绍](https://github.com/Blinue/Magpie/wiki/内置效果介绍)
- [MagpieFX](https://github.com/Blinue/Magpie/wiki/MagpieFX)
- [性能优化建议](https://github.com/Blinue/Magpie/wiki/性能优化建议)
- [捕获方式对比](https://github.com/Blinue/Magpie/wiki/捕获方式对比)
- [WIKI HOME](https://github.com/Blinue/Magpie/wiki/Home_EN)
- [FAQ](https://github.com/Blinue/Magpie/wiki/FAQ_EN)
- [Compilation guide](https://github.com/Blinue/Magpie/wiki/Compilation_Guide)
- [Introduction to effects](https://github.com/Blinue/Magpie/wiki/Introduction_to_Effects)
- [MagpieFX](https://github.com/Blinue/Magpie/wiki/MagpieFX_EN)
- [Performance optimization](https://github.com/Blinue/Magpie/wiki/Performance_Optimization)
- [Comparison of capture methods](https://github.com/Blinue/Magpie/wiki/Comparison_of_Capture_Methods)
- [WIKI HOME](https://github.com/Blinue/Magpie/wiki/Home%20(EN))
- [FAQ](https://github.com/Blinue/Magpie/wiki/FAQ%20(EN))
- [Compilation guide](https://github.com/Blinue/Magpie/wiki/Compilation%20guide)
- [Introduction to built-in effects](https://github.com/Blinue/Magpie/wiki/Introduction%20to%20built-in%20effects)
- [MagpieFX](https://github.com/Blinue/Magpie/wiki/MagpieFX%20(EN))
- [Performance optimization](https://github.com/Blinue/Magpie/wiki/Performance%20optimization)
- [Comparison of capture methods](https://github.com/Blinue/Magpie/wiki/Comparison%20of%20capture%20methods)