- 29 Nov, 2018 3 commits
-
-
Zach Hilman authored
-
bunnei authored
Uncheck automatically joycons docked when docked mode is enable
-
bunnei authored
Changed logging to be "Log before execution", Added more error logging, all services/svc should now log on some level
-
- 28 Nov, 2018 8 commits
-
-
bunnei authored
Fix clip distance and viewport
-
bunnei authored
Add Depth Clamp Support
-
bunnei authored
npad: Use NPadIdToIndex to prevent invalid array access
-
bunnei authored
gpu: Rewrite GPU command list processing with DmaPusher class.
-
Zach Hilman authored
-
bunnei authored
Texture decoder: Implemented Tile Width Spacing
-
bunnei authored
file_sys/registered_cache: Use regular const references instead of std::shared_ptr for InstallEntry()
-
bunnei authored
-
- 27 Nov, 2018 29 commits
-
-
bunnei authored
-
bunnei authored
yuzu/input: Minor changes
-
bunnei authored
npad: Fix copy/paste error with LED position assignments
-
Zach Hilman authored
-
Lioncash authored
Prevents compiler warnings related to truncation when invoking the dialog. It's also extremely suspect to use a u8 value here instead of a more general type to begin with.
-
Lioncash authored
This doesn't depend on any part of the private interface, so it can be made a non-member internal function.
-
bunnei authored
profile_manager: Save and load ProfileData from disk
-
Lioncash authored
-
Lioncash authored
file_sys/registered_cache: Use regular const references instead of std::shared_ptr for InstallEntry() These parameters don't need to utilize a shared lifecycle directly in the interface. Instead, the caller should provide a regular reference for the function to use. This also allows the type system to flag attempts to pass nullptr and makes it more generic, since it can now be used in contexts where a shared_ptr isn't being used (in other words, we don't constrain the usage of the interface to a particular mode of memory management).
-
bunnei authored
control_metadata: Correct typo in language name (Portugese -> Portuguese)
-
bunnei authored
gl_shader_decompiler: Fixup clip distance index
-
ReinUsesLisp authored
-
Lioncash authored
While we're at it, organize the array linearly, since clang formats the array elements quite wide length-wise with the addition of the missing 'u'. Technically also fixes patch lookup and icon lookup with Portuguese, though I doubt anyone has actually run into this issue.
-
bunnei authored
gl_rasterizer: Fixup for #1723.
-
Lioncash authored
std::bind is the pre-C++11 way of doing this.
-
Lioncash authored
Orders the elements the way they would actually be initialized in. Resolves compiler warnings with gcc and clang
-
Lioncash authored
-
Lioncash authored
The common pattern is to put the data members after the function interface where applicable.
-
Lioncash authored
-
Markus Wick authored
On invalidating the streaming buffer, we need to reupload all vertex buffers. But we don't need to reconfigure the vertex format. This was a (silly) misstake in #1723. Thanks at Rodrigo for discovering the issue. Fun fact, as configuring the vertex format also invalidate the vertex buffer, this misstake had no affect on the behavior.
-
bunnei authored
morton: Fixup compiler warning
-
bunnei authored
gdbstub: Silence value truncation warning within FpuWrite()
-
bunnei authored
- More accurate impl., fixes Undertale (among other games).
-
bunnei authored
svc: Implement svcCreateResourceLimit, svcGetResourceLimitCurrentValue(), svcGetResourceLimitLimitValue(), and svcSetResourceLimitLimitValue()
-
Rodolfo Bogado authored
-
Lioncash authored
The opposite of the getter functions, this function sets the limit value for a particular ResourceLimit resource category, with the restriction that the new limit value must be equal to or greater than the current resource value. If this is violated, then ERR_INVALID_STATE is returned. e.g. Assume: current[Events] = 10; limit[Events] = 20; a call to this service function lowering the limit value to 10 would be fine, however, attempting to lower it to 9 in this case would cause an invalid state error.
-
Lioncash authored
This kernel service function is essentially the exact same as svcGetResourceLimitLimitValue(), with the only difference being that it retrieves the current value for a given resource category using the provided resource limit handle, rather than retrieving the limiting value of that resource limit instance. Given these are exactly the same and only differ on returned values, we can extract the existing code for svcGetResourceLimitLimitValue() to handle both values.
-
ReinUsesLisp authored
-
Lioncash authored
This kernel service function retrieves the maximum allowable value for a provided resource category for a given resource limit instance. Given we already have the functionality added to the resource limit instance itself, it's sufficient to just hook it up. The error scenarios for this are: 1. If an invalid resource category type is provided, then ERR_INVALID_ENUM is returned. 2. If an invalid handle is provided, then ERR_INVALID_HANDLE is returned (bad thing goes in, bad thing goes out, as one would expect). If neither of the above error cases occur, then the out parameter is provided with the maximum limit value for the given category and success is returned.
-