- Jun 06, 2019
-
-
Zach Hilman authored
yuzu/CMakeLists: Pass compilation flags that make it more difficult to cause bugs in Qt code
-
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
-
Lioncash authored
Enforces the use of the proper URL resolution functions. e.g. url = some_local_path_string; should actually be: url = QUrl::fromLocalPath(some_local_path_string); etc. This makes it harder to cause bugs when operating with both strings and URLs at the same time.
-
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
Other overloads of start() are considerably much safer to use if we ever need this in the future and need to pass arguments to the program, given it contains separate parameters for the program path and the arguments themselves, whereas this unsafe overload contains both as a single string. Given the alternatives are much safer, we can disable this.
-
Lioncash authored
Prevents hard-to-diagnose bugs from potentially occurring and requires any type narrowing to be explicitly performed by our code.
-
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
-