- Aug 23, 2018
-
-
literalmente-game authored
* Swap "Plus" with "Minus" on the controller GUI Major fix /s
-
James Rowe authored
externals: Update fmt to 6201052
-
- Aug 22, 2018
-
-
bunnei authored
renderer_opengl: Namespace OpenGL code
-
James Rowe authored
externals/boost: Update to 1.68.0
-
Lioncash authored
Previously, we'd get warnings like: " c:\projects\yuzu\externals\fmt\include\fmt\format.h(2868): warning C4127: conditional expression is constant [C:\projects\yuzu\msvc_build\externals\dynarmic\src\dynarmic.vcxproj] " spamming the build output when compiling on Windows. This updates fmt to include the upstreamed fix that silences this warning.
-
Lioncash authored
This updates the submodule to use 1.68.0. Notably, it gets rid of the silly "Info: Boost.Config is older than your compiler version - probably nothing bad will happen - but you may wish to look for an update Boost version. Define BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE to suppress this message." message that spams the output of the build process on Windows.
-
bunnei authored
config: Fixed icon size get set to 0
-
Lioncash authored
Namespaces all OpenGL code under the OpenGL namespace. Prevents polluting the global namespace and allows clear distinction between other renderers' code in the future.
-
tech4me authored
-
bunnei authored
qt/main: Port part of citra(#3411), open savedata works
-
bunnei authored
Port #3353 from Citra: "citra-qt: Add customizable speed limit target "
-
bunnei authored
maxwell_to_gl: Implement PrimitiveTopology::Lines
-
bunnei authored
Port #3902 from Citra: "Add restart hotkey & menu option"
-
bunnei authored
GPU: Implemented logic ops.
-
OatmealDome authored
Used by Splatoon 2's debug menu.
-
bunnei authored
logging/text_formatter: Use empty braces for initializing CONSOLE_SCREEN_BUFFER_INFO instance
-
bunnei authored
Revert "Shader: Use the right sampler type in the TEX, TEXS and TLDS …"
-
bunnei authored
Added missing include for pl:u
-
David Marcec authored
Should fix any compile errors
-
David authored
* Added bfttf loading We can now load system bfttf fonts from system archives AND shared memory dumps. This allows people who have installed their system nand dumps to yuzu to automatically get shared font support. We also now don't hard code the offsets or the sizes of the shared fonts and it's all calculated for us now. * Addressed plu fixups * Style changes for plu * Fixed logic error for plu and added more error checks.
-
- Aug 21, 2018
-
-
bunnei authored
vfs: Replace mode.h include with forward declarations where applicable
-
bunnei authored
am: Utilize std::array within PopLaunchParameter()
-
bunnei authored
audio_core/filter: Add explicit cast to assignment in Process()
-
bunnei authored
shader_bytecode: Parenthesize conditional expression within GetTextureType()
-
Lioncash authored
Resolves a -Wlogical-op-parentheses warning.
-
Lioncash authored
Avoids the need to rebuild these source files if the mode header changes.
-
Lioncash authored
Previously this would cause warnings about implicit conversions to s16 from a double
-
Lioncash authored
The previous form of initializing done here is a C-ism, an empty set of braces is sufficient for initializing (and doesn't potentially cause missing brace warnings, given the first member of the struct is a COORD struct).
-
Lioncash authored
Gets rid of the potential for C array-to-pointer decay, and also makes pointer arithmetic to get the end of the copy range unnecessary. We can just use std::array's begin() and end() member functions.
-
bunnei authored
sdmc_factory: Remove unnecessary core include
-
bunnei authored
bit_field: Convert ToBool() into explicit operator bool
-
bunnei authored
Port #4056 from Citra: "Add Clear Recent Files menu action"
-
Mat M authored
perf_stats: Change MAX_LAG_TIME_US to an appropriate value
-
MerryMage authored
25us is far too small, and would result in std::this_thread::sleep_for being called with this as a maximum value. This means that a guest application that produces frames instantly would only be limited to 40 kHz. 25ms is a more appropriate value, as it allows for a 60 Hz refresh rate while providing enough slack in the negative region.
-
Lioncash authored
This doesn't require the central core header to be included, it just needs the vfs headers.
-
fearlessTobi authored
-
fearlessTobi authored
-
Lioncash authored
Gets rid of a TODO that is long overdue.
-
tech4me authored
-