Morph
bc5ed1aa1b
main: Fix default AA name
By default, no AA is applied, not FXAA
4 years ago
Morph
a237fb5f75
configure_graphics_ui: AMD's -> AMD
AMD officially markets FSR as AMD FidelityFX™️ Super Resolution
4 years ago
Morph
c76163b611
main: Shorten AMD FSR status bar text
AMD'S FIDELITYFX SR -> FSR
4 years ago
german77
311324e231
hotkeys: Don't allow hotkeys to spam
4 years ago
Valeri
f7e0a37753
Prevent window flickering when holding Esc
Reported on discord by Levlight. Don't try to exit fullscreen if it's already off.
4 years ago
Fernando Sahmkow
282e04bffb
TextureCache: Add automatic anisotropic filtering and refactor code.
4 years ago
Fernando Sahmkow
5230378709
TextureCache: Make a better Anisotropic setter.
5 years ago
ameerj
864f2e0b81
configure_graphics.ui: Cleanup scaling options and fix duplicate name warning
5 years ago
Fernando Sahmkow
a96c9c803b
Yuzu UI: Add button for Anti Alias
5 years ago
Marshall Mohror
74e39ed6ee
Frontend: Add anti-aliasing method setting
5 years ago
FernandoS27
2eff80b47f
QtGUI: Add buttton to toggle the filter.
5 years ago
FernandoS27
9e065b9c7d
VideoCore: Add gaussian filtering.
5 years ago
FernandoS27
e7fc60406e
VideoCore: Add more rescaling option.
5 years ago
Fernando Sahmkow
b60966041c
Presentation: add Nearest Neighbor filter.
5 years ago
Marshall Mohror
37cb0377ae
vulkan: Implement FidelityFX Super Resolution
5 years ago
ameerj
ca1db63116
yuzu: Fix build errors
5 years ago
lat9nq
1c93476a80
video_core,yuzu: Move UpdateRescalingInfo call to video_core
This only needs to happen once per game boot, so we can just call it
during CreateGPU and be done with it, avoiding the need to call it in
the frontends.
5 years ago
ameerj
80f8d4989e
bootmanager: Fix screenshot resolution factor usage
Fixes screenshots at non integer scaling
5 years ago
Fernando Sahmkow
a6b88e85bf
Renderer: Implement Bicubic and ScaleForce filters.
5 years ago
Morph
138d9d7eff
main: Add resolution scale label in the status bar
Shows the resolution scale as "Scale: {}x" in the status bar, where {} is a floating point value representing the current resolution scaling factor.
5 years ago
Fernando Sahmkow
778700ff9d
TextureCache: Modify Viewports/Scissors according to Rescale.
5 years ago
Fernando Sahmkow
37ef9c9130
Settings: Add resolution scaling to settings.
5 years ago
Matías Locatti
ffb79afd29
Replace keys error pop up
Fight me.
5 years ago
Morph
1af499c15b
applets/swkbd: Skip text checking if the text has been confirmed
Confirm means that the text has already been checked by the application to be correct, but is asking the user for confirmation.
The confirmation text itself seems to be corrupted though, this needs to be investigated.
Fixes the software keyboard in Famicom Detective Club: The Missing Heir
5 years ago
Morph
a6e6a5ac38
general: Get the current process program id directly from the system
This allows us to avoid including KProcess' header file in files that only need to get the current process' program id.
5 years ago
Morph
64275dfbf4
general: Rename GetTitleID to GetProgramID
5 years ago
Levi Behunin
d6b5f64484
Refactor Logging Impl
Loop on stop_token and remove final_entry in Entry.
Move Backend thread out of Impl Constructor to its own function.
Add Start function for backend thread.
Use stop token in PopWait and check if entry filename is nullptr before logging.
5 years ago
lat9nq
604b6d1210
yuzu qt: Disable the screensaver with SDL2
Disables the screen saver when a game boots using SDL2 so that it works
on any supported platform.
5 years ago
german77
f503dbf071
profile_manager: Resize any image bigger than 256p
5 years ago
Moonlacer
1665e2d2a6
Geometry property removal and rewording
5 years ago
ameerj
ef811c6425
settings: Remove std::chrono usage
Alleviates the dependency on chrono for all files that include settings.h
5 years ago
Moonlacer
abe6d39b1a
add_link
remove_accident
fix_whoopsie
5 years ago
Romain Failliot
992f325662
main: fix typo in warning message
5 years ago
Morph
d4c79a0404
main: Add missing make_unique for ui
5 years ago
Morph
2b622411fd
qt_web_browser: Add missing QApplication include
5 years ago
Romain Failliot
427ce8dcef
ui: fix crash when closing configure window
This crash happens 100% of the time (on Linux at least), you just need
to open the configure window and click OK.
It seems to happen when the tabs are destroyed and once all the tabs are
destroyed, a final signal is sent with `index == -1`. So `debug_tab_tab`
doesn't exist anymore when this happens, so the crash.
5 years ago
Morph
5c6ca597c5
bootmanager: Forward declare System and SystemResultStatus
5 years ago
Morph
f0dc07dbac
yuzu: Construct system in GMainWindow
5 years ago
Morph
17763a44d5
core: Move ResultStatus outside of System
Allows it to be a forward declaration in other header files.
5 years ago
Romain Failliot
ecef109162
Hide mouse cursor by default
5 years ago
Creak
bad122b195
main: Slightly refactor NCA entry installation in InstallNCA ( #7181 )
* main: Slightly refactor NCA entry installation in InstallNCA
Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com>
5 years ago
Morph
86908d569e
main: Use std::unique_ptr for ui
5 years ago
Morph
ab441fb009
configuration: Use std::make_unique instead of operator new for ui
5 years ago
Moonlacer
c68ce25a14
settings_ui: Better NVDEC Description For Each Video Rendering Option ( #7165 )
* better_description
* Revert "better_description"
This reverts commit 3a152a6ba6 .
* better_nvdec_wording
* best_performance
* update_word_stuff
* another_update
5 years ago
Romain Failliot
39b3c9022d
Create local variables for mouse and wheel positions
5 years ago
Romain Failliot
818651909f
Fix a few warnings
- configure_input_player_widget.cpp: always better to use `const auto &`
whenever possible
- profiler.cpp: `ev->pos()` is deprecated, replace with
`ev->position()`, which returns floats, thus the addition of
`.toPoint()` (same as what's happening in `pos()`)
- game_list.cpp: `QString::SplitBehavior` is deprecate, use `Qt::`
namespace instead
5 years ago
ameerj
5c829c7e4e
main: Add option to reset window size to 900p
5 years ago
Levi Behunin
54ae8d1649
Update configure_tas.ui
Remove the geometry property again(7045) after 7090 re-added.
5 years ago
lat9nq
b6894bfc5b
discord_impl: Remove global system instances
5 years ago
lat9nq
4ce53ffe6a
game_list: Remove global instances of Core::System
5 years ago