| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-09-17 | Implemented Internal Flags | FernandoS27 | |
| 2018-09-17 | Implemented I2I.CC on the NEU control code, used by SMO | FernandoS27 | |
| 2018-09-17 | Implemented CSETP | FernandoS27 | |
| 2018-09-17 | Implemented Control Codes | FernandoS27 | |
| 2018-09-17 | Merge pull request #1311 from FernandoS27/fast-swizzle | bunnei | |
| Optimized Texture Swizzling | |||
| 2018-09-17 | Merge pull request #1312 from lioncash/fwd | bunnei | |
| service/vi: Replace includes with forward declarations where applicable | |||
| 2018-09-17 | Merge pull request #1313 from lioncash/error | bunnei | |
| kernel/errors: Amend error code for ERR_NOT_FOUND | |||
| 2018-09-17 | Merge pull request #1314 from lioncash/cast | bunnei | |
| audio_core/time_stretch: Silence truncation warnings in Process() | |||
| 2018-09-17 | Merge pull request #1316 from lioncash/shadow | bunnei | |
| gl_shader_decompiler: Get rid of variable shadowing within LEA instructions | |||
| 2018-09-17 | Merge pull request #1318 from lioncash/errors-sm | bunnei | |
| services/sm: Amend error code constants | |||
| 2018-09-17 | Merge pull request #1321 from lioncash/audio-shadow | bunnei | |
| cubeb_sink: Get rid of variable shadowing within CubebSink's constructor | |||
| 2018-09-17 | Merge pull request #1315 from lioncash/size | bunnei | |
| kernel/svc: Handle a few error cases within memory-related functions | |||
| 2018-09-17 | Merge pull request #1320 from lioncash/name | bunnei | |
| cubeb_sink: Correct context name in ListCubebSinkDevices() | |||
| 2018-09-17 | Merge pull request #1328 from FearlessTobi/port-4192 | bunnei | |
| Port #4192 from Citra: "svc: change unknown to thread in CreateThread" | |||
| 2018-09-17 | Merge pull request #1327 from FearlessTobi/port-4171 | bunnei | |
| Port #4171 from Citra: "Tests: Remove glad test OS X work-around" | |||
| 2018-09-17 | Merge pull request #1326 from FearlessTobi/port-4182 | bunnei | |
| Port #4182 from Citra: "Prefix all size_t with std::" | |||
| 2018-09-17 | Merge pull request #1329 from raven02/bgr5a1u | bunnei | |
| Implement RenderTargetFormat::BGR5A1_UNORM | |||
| 2018-09-17 | Merge pull request #1335 from lioncash/copy | bunnei | |
| game_list_p: Take map iterator contents by const reference | |||
| 2018-09-17 | Merge pull request #1336 from lioncash/antialias | bunnei | |
| yuzu/util: Antialias game list compatibility pixmaps | |||
| 2018-09-17 | Merge pull request #1331 from raven02/astc_8_8 | bunnei | |
| Implement ASTC_2D_8X8 | |||
| 2018-09-17 | yuzu/util: Antialias game list compatibility pixmaps | Lioncash | |
| 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. | |||
| 2018-09-17 | game_list_p: Amend typo in GameListItemCompat's constructor parameter | Lioncash | |
| Adds a missing 'i' character that was missing in compatibility. | |||
| 2018-09-17 | game_list_p: Take map iterator contents by const reference | Lioncash | |
| We don't need to copy the whole struct in this instance, we can just utilize a reference instead. | |||
| 2018-09-17 | Implement ASTC_2D_8X8 (Bayonetta 2) | raven02 | |
| 2018-09-15 | Merge pull request #1273 from Subv/ld_sizes | bunnei | |
| Shaders: Implemented multiple-word loads and stores to and from attribute memory. | |||
| 2018-09-15 | Merge pull request #1271 from Subv/kepler_engine | bunnei | |
| GPU: Basic implementation of the Kepler Inline Memory engine (p2mf). | |||
| 2018-09-16 | Implement RenderTargetFormat::BGR5A1_UNORM (Pokken Tournament DX) | raven02 | |
| 2018-09-15 | Shaders: Implemented multiple-word loads and stores to and from attribute ↵ | Subv | |
| memory. This seems to be an optimization performed by nouveau. | |||
| 2018-09-15 | Port # #4192 from Citra: "svc: change unknown to thread in CreateThread" | Valentin Vanelslande | |
| 2018-09-15 | Tests: Remove glad test OS X work-around | Yuri Kunde Schlesner | |
| 2018-09-15 | Port #4182 from Citra: "Prefix all size_t with std::" | fearlessTobi | |
| 2018-09-14 | Optimized Texture Swizzling | FernandoS27 | |
| 2018-09-14 | cubeb_sink: Get rid of variable shadowing within CubebSink's constructor | Lioncash | |
| The parameter of the lambda was shadowing the variable that was being assigned to. | |||
| 2018-09-14 | cubeb_sink: Correct context name in ListCubebSinkDevices() | Lioncash | |
| This ain't Citra. | |||
| 2018-09-14 | services/sm: Amend error code constants | Lioncash | |
| 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. | |||
| 2018-09-13 | kernel/svc: Sanitize creation of shared memory via svcCreateSharedMemory() | Lioncash | |
| 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". | |||
| 2018-09-13 | kernel/svc: Sanitize addresses, permissions, and sizes within ↵ | Lioncash | |
| 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. | |||
| 2018-09-13 | gl_shader_decompiler: Get rid of variable shadowing within LEA instructions | Lioncash | |
| These variables are already defined within an outer scope. | |||
| 2018-09-13 | kernel/svc: Sanitize addresses and sizes within svcMapMemory() and ↵ | Lioncash | |
| svcUnmapMemory() The kernel checks if the addresses and given size is 4KB aligned before continuing onwards to map the memory. | |||
| 2018-09-13 | kernel/svc: Sanitize heap sizes within svcSetHeapSize() | Lioncash | |
| 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. | |||
| 2018-09-13 | Merge pull request #1310 from lioncash/kernel-ns | bunnei | |
| kernel/thread: Include thread-related enums within the kernel namespace | |||
| 2018-09-13 | Merge pull request #1309 from lioncash/nested | bunnei | |
| service: Use nested namespace specifiers where applicable | |||
| 2018-09-13 | audio_core/time_stretch: Silence truncation warnings in Process() | Lioncash | |
| The SoundTouch API only accepts uint amount of samples. | |||
| 2018-09-13 | Merge pull request #1307 from lioncash/pl | bunnei | |
| services/pl_u: Add missing Korean font to the fallback case for shared fonts | |||
| 2018-09-13 | kernel/errors: Amend error code for ERR_NOT_FOUND | Lioncash | |
| This is the value returned by the kernel for svcConnectToNamedPort() if the named port cannot be found. | |||
| 2018-09-13 | service/vi: Replace includes with forward declarations where applicable | Lioncash | |
| 2018-09-13 | kernel/thread: Include thread-related enums within the kernel namespace | Lioncash | |
| Previously, these were sitting outside of the Kernel namespace, which doesn't really make sense, given they're related to the Thread class which is within the Kernel namespace. | |||
| 2018-09-13 | service: Use nested namespace specifiers where applicable | Lioncash | |
| There were a few places where nested namespace specifiers weren't being used where they could be within the service code. This amends that to make the namespacing a tiny bit more compact. | |||
| 2018-09-13 | Merge pull request #1308 from valentinvanelslande/ipc | James Rowe | |
| ipc: fix spelling mistake | |||
| 2018-09-13 | ipc: minor fix | Valentin Vanelslande | |
