- 01 Dec, 2020 3 commits
- 30 Nov, 2020 4 commits
-
-
bunnei authored
vk_shader_decompiler: Implement force early fragment tests
-
Ameer J authored
Disable web applet and warning box when compiling for Linux on CI
-
lat9nq authored
yuzu's web applet does not or barely reacts to user input while open in Linux. It can be closed via 'Exit Web Applet' on the menubar, however if yuzu is in fullscreen, this is effectively a softlock as the menubar cannot be accessed. This disables building yuzu with the web applet on the Linux CI target. In addition, this disables the QMessageBox warning about not having compiled yuzu with the web applet.
-
bunnei authored
InputCommon: Implement full mouse support
-
- 29 Nov, 2020 4 commits
- 28 Nov, 2020 5 commits
-
-
bunnei authored
HID: Stub set and get NpadCommunicationMode
-
LC authored
audio_core: Remove temp_mix_buffer
-
Chloe Marcec authored
It's unused and doesn't need to be initialized
-
bunnei authored
tests: Fix warning about comparison between signed and unsigned
-
bunnei authored
core: Reduce string copies in GetGameFileFromPath()
-
- 27 Nov, 2020 10 commits
-
-
LC authored
CMakeLists: disable -Winvalid-offsetof
-
comex authored
This Clang warning complains when offsetof is used on a non-standard-layout type (i.e. any class using various C++ features), even though it works fine (and is not undefined behavior as of C++17).
-
comex authored
-
Rodrigo Locatti authored
core: Eliminate remaining usages of the global system instance
-
Lioncash authored
Removes all remaining usages of the global system instance. After this, migration can begin to migrate to being constructed and managed entirely by the various frontends.
-
Chloe authored
savedata_factory: Eliminate usage of the global system instance
-
Lioncash authored
Now there's only two meaningful instances left in core.
-
Rodrigo Locatti authored
service: Eliminate usages of the global system instance
-
german authored
-
Lioncash authored
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
-
- 26 Nov, 2020 10 commits
-
-
LC authored
codec: Fix `pragma GCC diagnostic pop` missing corresponding push
-
comex authored
-
ReinUsesLisp authored
Force early fragment tests when the 3D method is enabled. The established pipeline cache takes care of recompiling if needed. This is implemented only on Vulkan to avoid invalidating the shader cache on OpenGL.
-
Lioncash authored
Eliminates some minor string churn where applicable. Also eliminates an unnecessary vector copy.
-
bunnei authored
nvdrv, video_core: Don't index out of bounds when given invalid syncpoint ID
-
german authored
-
bunnei authored
nvservices: Reintroducee IoctlCtrl
-
german authored
-
ReinUsesLisp authored
Add an equivalent to 'Common::AlignUp(n, d) / d' and a log2 alternative.
-
LC authored
input_common: unbreak -Werror with Clang
-
- 25 Nov, 2020 4 commits
-
-
Jan Beich authored
error: unknown warning option '-Werror=unused-but-set-parameter'; did you mean '-Werror=unused-parameter'? [-Werror,-Wunknown-warning-option] error: unknown warning option '-Werror=unused-but-set-variable'; did you mean '-Werror=unused-const-variable'? [-Werror,-Wunknown-warning-option]
-
Rodrigo Locatti authored
Overhaul EmuWindow::PollEvents to fix yuzu-cmd calling SDL_PollEvents off main thread
-
Rodrigo Locatti authored
renderer_vulkan: Implement alpha testing
-
ameerj authored
-