- Sep 17, 2018
-
-
bunnei authored
Optimized Texture Swizzling
-
bunnei authored
service/vi: Replace includes with forward declarations where applicable
-
bunnei authored
kernel/errors: Amend error code for ERR_NOT_FOUND
-
bunnei authored
audio_core/time_stretch: Silence truncation warnings in Process()
-
bunnei authored
gl_shader_decompiler: Get rid of variable shadowing within LEA instructions
-
bunnei authored
services/sm: Amend error code constants
-
bunnei authored
cubeb_sink: Get rid of variable shadowing within CubebSink's constructor
-
bunnei authored
kernel/svc: Handle a few error cases within memory-related functions
-
bunnei authored
cubeb_sink: Correct context name in ListCubebSinkDevices()
-
bunnei authored
Port #4192 from Citra: "svc: change unknown to thread in CreateThread"
-
bunnei authored
Port #4171 from Citra: "Tests: Remove glad test OS X work-around"
-
bunnei authored
Port #4182 from Citra: "Prefix all size_t with std::"
-
bunnei authored
Implement RenderTargetFormat::BGR5A1_UNORM
-
bunnei authored
game_list_p: Take map iterator contents by const reference
-
bunnei authored
yuzu/util: Antialias game list compatibility pixmaps
-
bunnei authored
Implement ASTC_2D_8X8
-
Lioncash authored
We pass a hint to the QPainter instance that we want anti-aliasing on the compatibility icons, which prevents the circles from looking fairly jagged, and actually makes them look circular.
-
Lioncash authored
Adds a missing 'i' character that was missing in compatibility.
-
Lioncash authored
We don't need to copy the whole struct in this instance, we can just utilize a reference instead.
-
- Sep 16, 2018
-
-
raven02 authored
-
- Sep 15, 2018
-
-
bunnei authored
Shaders: Implemented multiple-word loads and stores to and from attribute memory.
-
bunnei authored
GPU: Basic implementation of the Kepler Inline Memory engine (p2mf).
-
raven02 authored
-
Subv authored
This seems to be an optimization performed by nouveau.
-
Valentin Vanelslande authored
-
Yuri Kunde Schlesner authored
-
fearlessTobi authored
-
- Sep 14, 2018
-
-
FernandoS27 authored
-
Lioncash authored
The parameter of the lambda was shadowing the variable that was being assigned to.
-
Lioncash authored
This ain't Citra.
-
Lioncash authored
Courtesy of @ogniK5377. This also moves them into the cpp file and limits the visibility to where they're directly used. It also gets rid of unused or duplicate error codes.
-
Lioncash authored
The kernel caps the size limit of shared memory to 8589930496 bytes (or (1GB - 512 bytes) * 8), so approximately 8GB, where every GB has a 512 byte sector taken off of it. It also ensures the shared memory is created with either read or read/write permissions for both permission types passed in, allowing the remote permissions to also be set as "don't care".
-
Lioncash authored
kernel/svc: Sanitize addresses, permissions, and sizes within svcMapSharedMemory() and svcUnmapSharedMemory() Part of the checking done by the kernel is to check if the given address and size are 4KB aligned, as well as checking if the size isn't zero. It also only allows mapping shared memory as readable or read/write, but nothing else, and so we shouldn't allow mapping as anything else either.
-
Lioncash authored
These variables are already defined within an outer scope.
-
Lioncash authored
The kernel checks if the addresses and given size is 4KB aligned before continuing onwards to map the memory.
-
Lioncash authored
The kernel checks if the given size is a multiple of 2MB and <= to 4GB before going ahead and attempting to allocate that much memory.
-
- Sep 13, 2018
-
-
bunnei authored
kernel/thread: Include thread-related enums within the kernel namespace
-
bunnei authored
service: Use nested namespace specifiers where applicable
-
Lioncash authored
The SoundTouch API only accepts uint amount of samples.
-
bunnei authored
services/pl_u: Add missing Korean font to the fallback case for shared fonts
-