- 31 Dec, 2018 3 commits
-
-
Lioncash authored
Two of these variables have fixed values, so we can make that immediately obvious from the get-go.
-
Lioncash authored
Namespaces don't require the use of a semicolon. Silences a -Wextra-semi warning.
-
Sebastian Valle authored
kernel/process: Start the main thread using the specified ideal core
-
- 30 Dec, 2018 3 commits
- 29 Dec, 2018 3 commits
-
-
Lioncash authored
-
David Marcec authored
-
bunnei authored
gpu: Remove PixelFormat G8R8U and G8R8S, as they do not seem to exist.
-
- 28 Dec, 2018 10 commits
-
-
bunnei authored
- Fixes UI rendering issues in The Legend of Zelda: Breath of the Wild.
-
bunnei authored
audio_core: Convert LOG_CRITICAL + UNREACHABLE over to UNIMPLEMENTED/UNIMPLEMENTED_MSG
-
Lioncash authored
These two macros being used in tandem were used prior to the introduction of UNIMPLEMENTED and UNIMPLEMENTED_MSG. This provides equivalent behavior, just with less typing/reading involved.
-
Lioncash authored
This matches kernel behavior in that processes are started using their specified ideal core, rather than always starting on core 0.
-
Lioncash authored
This makes the naming more closely match its meaning. It's just a preferred core, not a required default core. This also makes the usages of this term consistent across the thread and process implementations.
-
Lioncash authored
This function isn't a general purpose function that should be exposed to everything, given it's specific to initializing the main thread for a Process instance. Given that, it's a tad bit more sensible to place this within process.cpp, which keeps it visible only to the code that actually needs it.
-
bunnei authored
file_sys/program_metadata: Print out more descriptive address space descriptions
-
bunnei authored
kernel/process: Remove most allocation functions from Process' interface
-
Lioncash authored
Provides extra information that makes it easier to tell if an executable being run is using a 36-bit address space or a 39-bit address space. While we don't support AArch32 executables yet, this also puts in distinguishing information for the 32-bit address space types as well.
-
Lioncash authored
In all cases that these functions are needed, the VMManager can just be retrieved and used instead of providing the same functions in Process' interface. This also makes it a little nicer dependency-wise, since it gets rid of cases where the VMManager interface was being used, and then switched over to using the interface for a Process instance. Instead, it makes all accesses uniform and uses the VMManager instance for all necessary tasks. All the basic memory mapping functions did was forward to the Process' VMManager instance anyways.
-
- 27 Dec, 2018 18 commits
-
-
bunnei authored
Add missing uintBitsToFloat to SetRegisterToHalfFloat
-
Rodolfo Bogado authored
-
bunnei authored
kernel: Handle kernel capability descriptors
-
bunnei authored
Improve Zero flag implementation
-
bunnei authored
hid: Fix SetNpadJoyHoldType and improve logging.
-
bunnei authored
npad: Remove code to invert input in horizontal mode.
-
bunnei authored
kernel/vm_manager: Reset region attributes when unmapping a VMA
-
bunnei authored
am: Implement GetSaveDataSize and ExtendSaveData using files
-
Zach Hilman authored
These functions come in a pair and are needed by Smash Ultimate, Minecraft, and Skyrim, amongst others.
-
Zach Hilman authored
-
Zach Hilman authored
This stores a file in the save directory called '.yuzu_save_size' which stores the two save sizes (normal area and journaled area) sequentially as u64s.
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Serves no actual purpose in this instance besides making NACP's copy assignment deleted, which is not intended behavior.
-
Zach Hilman authored
Allows these functions to compile when T is not u8.
-
bunnei authored
renderer_opengl: Correct forward declaration of FramebufferLayout
-
bunnei authored
configure_per_general: Mark UI strings as translatable in the constructor
-
Lioncash authored
Like the other members related to memory regions, the attributes need to be reset back to their defaults as well.
-
- 26 Dec, 2018 3 commits
-
-
bunnei authored
configure_input_simple: Make input profile array constexpr
-
Lioncash authored
These are user-facing strings, so they should be translatable.
-
Lioncash authored
Calling tr() from a file-scope array isn't advisable, since it can be executed before the Qt libraries are even fully initialized, which can lead to crashes. Instead, the translatable strings should be annotated, and the tr() function should be called at the string's usage site.
-