- Jun 06, 2019
-
-
bunnei authored
service/ns: Add missing override specifiers
-
- Jun 05, 2019
-
-
bunnei authored
vk_device,vk_shader_decompiler: Miscellaneous changes
-
bunnei authored
gl_shader_decompiler: Remove guest "position" varying
-
bunnei authored
lr: Add command handler skeletons for Open*LocationResolver
-
bunnei authored
yuzu/configuration: Make function naming consistent
-
bunnei authored
gl_shader_decompiler: Pessimize uniform buffer access on AMD's prorpietary driver
-
Lioncash authored
-
Zach Hilman authored
core/telemetry_session: Remove usages of the global system accessor
-
Zach Hilman authored
core/core_timing_util: Use std::chrono types for specifying time units
-
Zach Hilman authored
input_common/sdl/sdl_impl: Minor cleanup
-
Lioncash authored
-
Zach Hilman authored
Implement/Fix IApplicationFunctions::GetDesiredLanguage
-
Zach Hilman authored
yuzu/{profile_select, software_keyboard}: Tidy up interface
-
Zach Hilman authored
gl_shader_cache: Minor style changes
-
Zach Hilman authored
qt: Silence name collision warnings
-
Zach Hilman authored
yuzu/configuration/configure_graphics: Eliminate type narrowing in a connect call
-
Zach Hilman authored
Remove outdated info about compability
-
Zach Hilman authored
game_list_worker: Use QFile over our own IOFile instance or std streams for the game list cache
-
Rodrigo Locatti authored
yuzu/bootmanager: Minor interface tidying
-
Lioncash authored
Makes the casing consistent with all of our general function naming conventions.
-
Lioncash authored
Makes the interface more type-safe and consistent in terms of return values.
-
- Jun 04, 2019
-
-
Lioncash authored
Removes unused overloads, simplifying the overall interface, deduplicating some code.
-
Mat M authored
yuzu: Remove unused birthday setting
-
Hexagon12 authored
shader_bytecode: Mark EXIT as flow instruction
-
Fernando Sahmkow authored
-
- Jun 03, 2019
-
-
Lioncash authored
If this path was ever taken, a runtime exception would occur due to the lack of a formatting specifier to insert the error code into the format string.
-
Lioncash authored
Places the documentation comments with the rest of SDLState's member function documentation.
-
Lioncash authored
Adds another underscore to clearly indicate the axis names.
-
Lioncash authored
Make it explicit that these aren't modified elsewhere (either through functions by reference, or by other operations).
-
Lioncash authored
Its prototype declared at the top of the translation unit contains the static qualifier, so the function itself should also contain it to make it a proper internally linked function.
-
Lioncash authored
It's valid to static_cast a void pointer back into its proper type.
-
Lioncash authored
Same behavior, but without a potential need to unnecessarily default construct a value.
-
Lioncash authored
The deleter can just be set in the constructor and maintained throughout the lifetime of the object. If a contained pointer is null, then the deleter won't execute, so this is safe to do. We don't need to swap it out with a version of a deleter that does nothing.
-
Lioncash authored
Silences the final two warnings in SDL code.
-
Lioncash authored
Gets rid of a few unnecessary inclusion dependencies. It also uncovered a few indirect inclusion dependencies being relied upon.
-
Lioncash authored
-
Lioncash authored
We can make this message more meaningful by indicating the location the screenshot has been saved to. We can also log out whenever a screenshot could not be saved (e.g. due to filesystem permissions or some other reason).
-
Lioncash authored
Treating it as a u16 can result in a sign-conversion warning when performing arithmetic with it, as u16 promotes to an int when aritmetic is performed on it, not unsigned int. This also makes the interface more uniform, as the layout interface now operates on u32 across the board.
-
Lioncash authored
This class contains non-trivial members, so we should default the destructor's definition within the cpp file.
-
Lioncash authored
Same thing (for platforms we support), less reading.
-