- 13 Oct, 2018 11 commits
-
-
Lioncash authored
Given the VirtualFile instance isn't stored into the class as a data member, or written to, this can just be turned into a const reference, as the constructor doesn't need to make a copy of it.
-
Lioncash authored
Orders the members in the exact order they would be initialized. This also prevents compiler warnings about this sort of thing.
-
Lioncash authored
Gets unused includes out of the headers and moves them into the cpp file if they're used there instead.
-
Lioncash authored
If the data is unconditionally being appended to the back of a std::vector, we can just directly insert it there without the need to insert all of the elements one-by-one with a std::back_inserter.
-
Lioncash authored
If a conditional (or it's body) travels more than one line, it should be braced.
-
Lioncash authored
Given the filesystem should always be assumed to be volatile, we should check and bail out if a seek operation isn't successful. This'll prevent potentially writing/returning garbage data from the function in rare cases. This also allows removing a check to see if an offset is within the bounds of a file before perfoming a seek operation. If a seek is attempted beyond the end of a file, it will fail, so this essentially combines two checks into one in one place.
-
Lioncash authored
Given the file is opened a few lines above and no operations are done, other than check if the file is in a valid state, the read/write pointer will always be at the beginning of the file.
-
bunnei authored
crypto: Add support for full key derivation
-
bunnei authored
kernel/process: Make CodeSet a regular non-inherited object
-
bunnei authored
Implemented helper function to correctly calculate a texture's size
-
bunnei authored
svc: Fix typos in sanitizing checks for MapMemory/UnmapMemory
-
- 12 Oct, 2018 10 commits
-
-
FernandoS27 authored
-
bunnei authored
Fixed incorrect types for svcBreak
-
Lioncash authored
These only exist to ferry data into a Process instance and end up going out of scope quite early. Because of this, we can just make it a plain struct for holding things and just std::move it into the relevant function. There's no need to make this inherit from the kernel's Object type.
-
bunnei authored
Passing an invalid nmap handle to Remap should throw an error
-
bunnei authored
thread: Remove unnecessary memset from ResetThreadContext()
-
bunnei authored
Added error codes for nvmap
-
Lioncash authored
Regular value initialization is adequate here for zeroing out data. It also has the benefit of not invoking undefined behavior if a non-trivial type is ever added to the struct for whatever reason.
-
David Marcec authored
-
David Marcec authored
-
Lioncash authored
-
- 11 Oct, 2018 11 commits
-
-
bunnei authored
HwOpus, Implemented DecodeInterleavedWithPerformance
-
bunnei authored
svc: Add missing address range sanitizing checks to MapMemory/UnmapMemory
-
bunnei authored
nvhost_as_gpu: Flush/invalidate CPU VAddr on UnmapBuffer.
-
bunnei authored
gl_shader_decompiler: Implement VMAD
-
David Marcec authored
-
David Marcec authored
Added error for invalid nmap handles
-
ReinUsesLisp authored
-
bunnei authored
-
David Marcec authored
Used by sonic ages
-
bunnei authored
Fixed block height settings for RenderTargets and Depth Buffers
-
Lioncash authored
This adds the missing address range checking that the service functions do before attempting to map or unmap memory. Given that both service functions perform the same set of checks in the same order, we can wrap these into a function and just call it from both functions, which deduplicates a little bit of code.
-
- 10 Oct, 2018 8 commits
-
-
bunnei authored
Implemented Scissor Testing
-
bunnei authored
gl_shader_decompiler: Implement geometry shaders
-
bunnei authored
kernel/thread: Use a regular pointer for the owner/current process
-
Lioncash authored
There's no real need to use a shared pointer in these cases, and only makes object management more fragile in terms of how easy it would be to introduce cycles. Instead, just do the simple thing of using a regular pointer. Much of this is just a hold-over from citra anyways. It also doesn't make sense from a behavioral point of view for a process' thread to prolong the lifetime of the process itself (the process is supposed to own the thread, not the other way around).
-
bunnei authored
ips_layer: Silence truncation and conversion warnings
-
bunnei authored
patch_manager: Return a std::unique_ptr from ParseControlNCA() and GetControlMetadata() instead of a std::shared_ptr
-
FernandoS27 authored
-
David Marcec authored
-