Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-30 | Assert Control Codes Generation | FernandoS27 | |
2018-10-29 | Merge pull request #1580 from FernandoS27/mm-impl | bunnei | |
Implemented Mipmaps | |||
2018-10-29 | Merge pull request #1617 from FearlessTobi/fix-stretch-delay | bunnei | |
time_stretch: Switch to values of Citra | |||
2018-10-29 | Merge pull request #1613 from ReinUsesLisp/gl-utils | bunnei | |
video_core: Move OpenGL specific utils to its renderer | |||
2018-10-29 | time_stretch: Switch to values of Citra | fearlessTobi | |
2018-10-28 | Merge pull request #1610 from slashiee/dxt1-alpha | bunnei | |
renderer_opengl: Enable alpha channel for DXT1 texture format | |||
2018-10-28 | video_core: Move OpenGL specific utils to its renderer | ReinUsesLisp | |
2018-10-28 | renderer_opengl: Correct bpp value for ASTC_2D_8X5_SRGB | Rodolfo Bogado | |
2018-10-28 | Fixed black textures, pixelation and we no longer require to auto-generate ↵ | FernandoS27 | |
mipmaps | |||
2018-10-28 | Fixed mipmap block autosizing algorithm | FernandoS27 | |
2018-10-28 | Fixed Invalid Image size and Mipmap calculation | FernandoS27 | |
2018-10-28 | Fixed Block Resizing algorithm and Clang Format | FernandoS27 | |
2018-10-28 | Implement Mip Filter | FernandoS27 | |
2018-10-28 | Zero out memory region of recreated surface before flushing | FernandoS27 | |
2018-10-28 | Implement Mipmaps | FernandoS27 | |
2018-10-28 | Enable alpha channel for DXT1 texture format | Michael | |
2018-10-28 | Correct bpp value for ASTC_2D_8X5 | Tobias | |
2018-10-28 | Merge pull request #1601 from FernandoS27/shader-precision | bunnei | |
Improved Shader accuracy on Vertex and Geometry Shaders. | |||
2018-10-28 | Refactor precise usage and add FMNMX, MUFU, FMUL32 and FADD332 | FernandoS27 | |
2018-10-28 | Merge pull request #1593 from lioncash/svc | bunnei | |
svc: Implement svcGetInfo command 0xF0000002 | |||
2018-10-28 | file_sys/patch_manager: Remove unnecessary if-statements (#1586) | Frederic L | |
* remove unnecessary if-statements * Addressed feedback | |||
2018-10-28 | Merge pull request #1598 from DeeJayBro/delete-directory | bunnei | |
service/filesystem: Implemented DeleteDirectory & DeleteDirectoryRecursive | |||
2018-10-28 | Merge pull request #1600 from DarkLordZach/nsp-secondary-loader-fix | bunnei | |
loader/nsp: Move secondary loader initialization to constructor | |||
2018-10-28 | Implement sRGB Support, including workarounds for nvidia driver issues and ↵ | Rodolfo Bogado | |
QT sRGB support | |||
2018-10-27 | Merge pull request #1602 from DarkLordZach/key-derivation-isxdigit | bunnei | |
key_manager: Use isxdigit instead of isdigit when reading key file | |||
2018-10-27 | key_manager: Use isxdigit instead of isdigit when reading key file | Zach Hilman | |
Crypto revisions are hex numbers and this function only checks if the string is valid for stoul in base 16, so it should be isxdigit. | |||
2018-10-27 | Merge pull request #1597 from lioncash/error | bunnei | |
configure_system: Indicate when filesystem operations fail | |||
2018-10-27 | Merge pull request #1594 from FreddyFunk/static-cast | bunnei | |
gl_rasterizer_cache: Fix compiler warning | |||
2018-10-27 | Improved Shader accuracy on Vertex and Geometry Shaders with FFMA, FMUL and FADD | FernandoS27 | |
2018-10-27 | Merge pull request #1596 from FearlessTobi/port-4367 | bunnei | |
Port citra-emu/citra#4367: "cubeb_sink: ignore null-name device when selecting" | |||
2018-10-27 | Merge pull request #1592 from bunnei/prim-restart | bunnei | |
gl_rasterizer: Implement primitive restart. | |||
2018-10-27 | Implement Default Block Height for each format | FernandoS27 | |
2018-10-27 | loader/nsp: Move secondary loader initialization to constructor | Zach Hilman | |
Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized. | |||
2018-10-27 | gl_rasterizer_cache: Fix compiler warning | Frederic Laing | |
2018-10-27 | service/filesystem: Add DirectoryDelete & DirectoryDeleteRecursively | DeeJayBro | |
2018-10-27 | configure_system: Make GetIcon() return the scaled 64x64 icon | Lioncash | |
Avoids the need to put the scaling parameters all over the place for the common case. The only other time scaling is done is to generate the smaller 48x48 image, so this is fine. | |||
2018-10-27 | configure_system: Move entry formatting for the user account list entries to ↵ | Lioncash | |
its own function Avoids the need to duplicate this all over the place, and makes it translator-friendly across the board. | |||
2018-10-27 | configure_system: Display errors to the user if file operations fail when ↵ | Lioncash | |
setting user images We should display an error to the user if setting a user image for an account fails, rather than continuing onwards. | |||
2018-10-27 | cubeb_sink: ignore null-name device when selecting | Weiyi Wang | |
We already ignore them on listing devices. We should do the same when selecting devices. This fix a crash when opening a specific device while there is a null device in the list | |||
2018-10-26 | svc: Localize the GetInfo enum class to the function itself | Lioncash | |
Nothing from this enum is intended to be used outside of this function. | |||
2018-10-26 | svc: Implement svcGetInfo command 0xF0000002 | Lioncash | |
This retrieves: if (curr_thread == handle_thread) { result = total_thread_ticks + (hardware_tick_count - last_context_switch_ticks); } else if (curr_thread == handle_thread && sub_id == current_core_index) { result = hardware_tick_count - last_context_switch_ticks; } | |||
2018-10-26 | gl_rasterizer: Implement primitive restart. | bunnei | |
2018-10-26 | Merge pull request #1533 from FernandoS27/lmem | bunnei | |
Implemented Shader Local Memory | |||
2018-10-26 | Merge pull request #1430 from DarkLordZach/remove-promote-dir | bunnei | |
vfs: Remove InterpretAsDirectory and related functions | |||
2018-10-26 | Merge pull request #1591 from bunnei/depth-range | bunnei | |
gl_rasterizer: Implement depth range. | |||
2018-10-25 | maxwell_3d: Add code for initializing register defaults. | bunnei | |
2018-10-25 | Merge pull request #1569 from lioncash/amiibo | bunnei | |
yuzu/main: Notify user of loading errors with Amiibo data | |||
2018-10-25 | Merge pull request #1587 from lioncash/private | bunnei | |
configure_system: Minor cleanup-related changes | |||
2018-10-25 | gl_rasterizer: Implement depth range. | bunnei | |
2018-10-25 | ldr: Partially implement LoadNro. | bunnei | |
- This is an incomplete implementation. It was tested with Super Mario Party. |