Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-15 | Merge pull request #3657 from ReinUsesLisp/viewport-zero | Rodrigo Locatti | |
vk_rasterizer: Default to 1 viewports with a size of 0 | |||
2020-04-14 | Texture Cache: Only do buffer copies on accurate GPU. (#3634) | Fernando Sahmkow | |
This is a simple optimization as Buffer Copies are mostly used for texture recycling. They are, however, useful when games abuse undefined behavior but most 3D APIs forbid it. | |||
2020-04-14 | Merge pull request #3660 from bunnei/friend-blocked-users | Zach Hilman | |
service: friend: Stub IFriendService::GetBlockedUserListIds. | |||
2020-04-14 | Merge pull request #3661 from bunnei/patch-manager-fix | Zach Hilman | |
file_sys: patch_manager: Return early when there are no layers to apply. | |||
2020-04-14 | file_sys: patch_manager: Return early when there are no layers to apply. | bunnei | |
2020-04-14 | service: friend: Stub IFriendService::GetBlockedUserListIds. | bunnei | |
- This is safe to stub, as there should be no adverse consequences from reporting no blocked users. | |||
2020-04-14 | vk_rasterizer: Default to 1 viewports with a size of 0 | ReinUsesLisp | |
Silence validation layer errors. | |||
2020-04-13 | Merge pull request #3636 from ReinUsesLisp/drop-vk-hpp | Rodrigo Locatti | |
renderer_vulkan: Drop Vulkan-Hpp | |||
2020-04-13 | Merge pull request #3651 from ReinUsesLisp/line-widths | Mat M | |
gl_rasterizer: Implement line widths and smooth lines | |||
2020-04-13 | Merge pull request #3638 from ReinUsesLisp/remove-preserve-contents | Mat M | |
texture_cache: Remove preserve_contents | |||
2020-04-13 | Merge pull request #3631 from ReinUsesLisp/more-astc | Mat M | |
texture/astc: More small ASTC optimizations | |||
2020-04-13 | Merge pull request #3619 from ReinUsesLisp/i2i | Mat M | |
shader/conversion: Implement I2I sign extension, saturation and selection | |||
2020-04-13 | Merge pull request #3627 from ReinUsesLisp/layered-view | Mat M | |
gl_texture_cache: Attach view instead of base texture for layered attchments | |||
2020-04-13 | Merge pull request #3646 from ReinUsesLisp/fix-glsl-turing | Mat M | |
gl_shader_decompiler: Improve generated code in HMergeH* | |||
2020-04-13 | Merge pull request #3633 from ReinUsesLisp/clean-texdec | Mat M | |
shader/texture: Remove type mismatches management from shader decoder | |||
2020-04-13 | gl_rasterizer: Implement line widths and smooth lines | ReinUsesLisp | |
Implements "legacy" features from OpenGL present on hardware such as smooth lines and line width. | |||
2020-04-12 | gl_shader_decompiler: Implement merges with bitfieldInsert | ReinUsesLisp | |
This also fixes Turing issues but it avoids doing more bitcasts. This should improve the generated code while also avoiding more points where compilers can flush floats. | |||
2020-04-12 | Merge pull request #3606 from ReinUsesLisp/nvflinger | bunnei | |
service/vi: Partially implement BufferQueue disconnect | |||
2020-04-12 | Merge pull request #3578 from ReinUsesLisp/vmnmx | Fernando Sahmkow | |
shader/video: Partially implement VMNMX | |||
2020-04-12 | Merge pull request #3644 from ReinUsesLisp/msaa | Mat M | |
video_core: Add MSAA registers in 3D engine and TIC | |||
2020-04-12 | gl_shader_decompiler: Improve generated code in HMergeH* | ReinUsesLisp | |
Avoiding bitwise expressions, this fixes Turing issues in shaders using half float merges that affected several games. | |||
2020-04-12 | shader/video: Partially implement VMNMX | ReinUsesLisp | |
Implements the common usages for VMNMX. Inputs with a different size than 32 bits are not supported and sign mismatches aren't supported either. VMNMX works as follows: It grabs Ra and Rb and applies a maximum/minimum on them (this is defined by .MX), having in mind the input sign. This result can then be saturated. After the intermediate result is calculated, it applies another operation on it using Rc. These operations are merges, accumulations or another min/max pass. This instruction allows to implement with a more flexible approach GCN's min3 and max3 instructions (for instance). | |||
2020-04-12 | video_core: Add MSAA registers in 3D engine and TIC | ReinUsesLisp | |
This adds the registers used for multisampling. It doesn't implement anything for now. | |||
2020-04-11 | Merge pull request #3635 from FernandoS27/buffer-free | Rodrigo Locatti | |
Buffer queue: Correct behavior of free buffer. | |||
2020-04-11 | Merge pull request #3611 from FearlessTobi/port-4956 | bunnei | |
Port citra-emu/citra#4956: "Fixes to game list sorting" | |||
2020-04-11 | texture_cache: Remove preserve_contents | ReinUsesLisp | |
preserve_contents was always true. We can't assume we don't have to preserve clears because scissored and color masked clears exist. This removes preserve_contents and assumes it as true at all times. | |||
2020-04-10 | renderer_vulkan: Drop Vulkan-Hpp | ReinUsesLisp | |
2020-04-10 | Merge pull request #3594 from ReinUsesLisp/vk-instance | bunnei | |
yuzu: Drop SDL2 and Qt frontend Vulkan requirements | |||
2020-04-10 | Buffer queue: Correct behavior of free buffer. | Fernando Sahmkow | |
This corrects the behavior of free buffer after witnessing it in an unrelated hardware test. I haven't found any games affected by it but in name of better accuracy we'll correct such behavior. | |||
2020-04-10 | Merge pull request #3607 from FearlessTobi/input-kms | bunnei | |
yuzu/configuration: Fix input profiles and a wrong assert | |||
2020-04-10 | service/vi: Partially implement BufferQueue disconnect | ReinUsesLisp | |
2020-04-10 | shader/texture: Remove type mismatches management from shader decoder | ReinUsesLisp | |
Since commit e22816a5bb we handle type mismatches from the CPU. We don't need to hack our shader decoder due to game bugs anymore. Removed in this commit. | |||
2020-04-09 | Merge pull request #3623 from ReinUsesLisp/renderdoc-bind-spam | Fernando Sahmkow | |
qt/bootmanager: Remove unnecessary glBindFramebuffer | |||
2020-04-09 | Merge pull request #3622 from ReinUsesLisp/srgb-texture-border | Fernando Sahmkow | |
video_core/texture: Use a LUT to convert sRGB texture borders | |||
2020-04-09 | astc: Hard code bit depth changes to 8 and use fast replicate | ReinUsesLisp | |
2020-04-09 | Merge pull request #3610 from FernandoS27/gpu-caches | Rodrigo Locatti | |
Refactor all the GPU Caches to use VAddr for cache addressing | |||
2020-04-09 | astc: Use boost's static_vector to avoid heap allocations | ReinUsesLisp | |
2020-04-09 | astc: Implement a fast precompiled alternative for Replicate | ReinUsesLisp | |
2020-04-09 | astc: Move Replicate to a constexpr LUT when possible | ReinUsesLisp | |
2020-04-09 | astc: Make InputBitStream constexpr | ReinUsesLisp | |
2020-04-09 | astc: OutputBitStream style changes and make it constexpr | ReinUsesLisp | |
2020-04-09 | Merge pull request #3601 from ReinUsesLisp/some-shader-encodings | bunnei | |
video_core/shader: Add some instruction and S2R encodings | |||
2020-04-08 | gl_texture_cache: Attach view instead of base texture for layered attachments | ReinUsesLisp | |
This way we are not ignoring the base layer of the current texture. | |||
2020-04-08 | VkRasterizer: Eliminate Legacy code. | Fernando Sahmkow | |
2020-04-08 | Memory: Correct GCC errors. | Fernando Sahmkow | |
2020-04-08 | Memory: Address Feedback. | Fernando Sahmkow | |
2020-04-08 | GPUMemoryManager: Improve safety of memory reads. | Fernando Sahmkow | |
2020-04-08 | Merge pull request #3624 from Kewlan/fix-sl-sr-position | bunnei | |
configuration: Fix placement of SL and SR | |||
2020-04-08 | Place SL and SR in the right most column. | Kewlan | |
2020-04-07 | Merge pull request #3572 from FearlessTobi/port-5127 | bunnei | |
Port citra-emu/citra#5127: "common: Port some changes from dolphin" |