- 24 Jun, 2020 3 commits
-
-
David Marcec authored
Prepo doesn't always pass a secondary buffer, we assume it always does which leads to a bad read.
-
Rodrigo Locatti authored
gl_shader_decompiler: Workaround textureLod when GL_EXT_texture_shadow_lod is not available
-
bunnei authored
hid: Implement Get/ResetGyroscopeZeroDriftMode
-
- 23 Jun, 2020 7 commits
-
-
bunnei authored
software_keyboard: Eliminate trivial redundant copies
-
bunnei authored
Port citra-emu/citra#5324: "Update manifest file to include new elements that are introduced with Windows 10 later versions"
-
bunnei authored
texture_cache: Fix incorrect address used in a DeduceSurface() call
-
bunnei authored
main/common: Log/append AVX/FMA to the Host CPU string if available and add AVX512 detection
-
Rodrigo Locatti authored
Silence miscellaneous warnings
-
Morph authored
-
Morph authored
-
- 22 Jun, 2020 8 commits
-
-
VolcaEM authored
* account: Update function tables and add missing classes * clang-format * Add missing "public" * Add missing public again * Add missing final
-
LC authored
arm_dynarmic: Minor logging changes
-
Morph authored
-
Morph authored
-
Rodrigo Locatti authored
vk_update_descriptor: Upload descriptor sets data directly
-
bunnei authored
video_core: Eliminate some variable shadowing
-
bunnei authored
vulkan/wrapper: Remove noexcept from GetSurfaceCapabilitiesKHR()
-
bunnei authored
Port citra-emu/citra#5322: "Fix: fatal error CVT1100 when compiling manifest file"
-
- 21 Jun, 2020 6 commits
-
-
Morph authored
- Used by Captain Toad Treasure Tracker
-
Morph authored
Enable GL_EXT_texture_shadow_lod if available. If this extension is not available, such as on Intel/AMD proprietary drivers, use textureGrad as a workaround.
-
Morph authored
-
bunnei authored
gl_arb_decompiler: Avoid several string copies
-
FearlessTobi authored
Co-Authored-By: dragios <dragios@users.noreply.github.com>
-
FearlessTobi authored
Occurs when doing a local compile in MSVC build. The compiler I'm using is as below: Microsoft Visual Studio Community 2019 Preview Version 16.6.0 Preview 5.0 Fixes this error: CVTRES : fatal error CVT1100: duplicate resource. type:MANIFEST, name:1, language:0x0409 LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt I have put 0 since previous name was 1. If have other names in mind, please let me know. Co-Authored-By: dragios <dragios@users.noreply.github.com>
-
- 20 Jun, 2020 16 commits
-
-
LC authored
macro_jit_x64: Use ecx for shift register
-
MerryMage authored
shl/shr only accept cl as their second argument
-
Lioncash authored
Previously the source was being deduced twice in a row.
-
merry authored
macro_jit_x64: Amend readability of Compile_ExtractShiftLeftRegister()
-
merry authored
macro_jit_x64: Remove unused variable
-
Lioncash authored
We can just make use of moves here to get rid of two redundant copies
-
Morph authored
Append AVX and FMA instructions to cpu string if the host cpu supports them
-
Morph authored
-
Morph authored
-
bunnei authored
Fix compilation on macOS
-
Lioncash authored
Variables that are marked as const cannot have the move constructor invoked when returning from a function (the move constructor requires a non-const variable so it can "steal" the resources from it.
-
Lioncash authored
Check() can throw an exception if the Vulkan result isn't successful. We remove the check so that std::terminate isn't outright called and allows for better debugging (should it ever actually fail).
-
Lioncash authored
Previously dst wasn't being used.
-
Lioncash authored
Previously dst wasn't being used.
-
Lioncash authored
Removes a completely unused label and marks another variable as unused, given it seems like it has potential uses in the future.
-
Lioncash authored
Renames some variables to prevent ones in inner scopes from shadowing outer-scoped variables. The Copy* functions have no shadowing, but we rename them anyways to remain consistent with the other functions.
-