| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Avoid using VectorExtractDynamic for subgroup mask on Adreno GPUs | 2023-06-03 | 1 | -1/+16 | |
| | | | | | This crashes their shader compiler for some reason. | ||||
| * | shader_recompiler: Fix shuffle partitioning for >64 invoc-per-subgroup GPUs | 2023-01-05 | 1 | -30/+28 | |
| | | | | | The existing implementation only supports 64 invoc-per-subgroup GPUs, and misbehaves on adreno when invocations need to be split into 4 emulated subgroups. | ||||
| * | Vulkan: update initialization | 2022-11-27 | 1 | -12/+23 | |
| | | | | | Co-authored-by: bylaws <bylaws@users.noreply.github.com> | ||||
| * | general: Convert source file copyright comments over to SPDX | 2022-04-23 | 1 | -3/+2 | |
| | | | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later. | ||||
| * | shader_recompiler: Reduce unused includes | 2022-03-20 | 1 | -1/+0 | |
| | | |||||
| * | emit_spirv: Reduce emit_spirv.h include overhead | 2021-12-05 | 1 | -0/+1 | |
| | | | | | emit_spirv.h is included in video_core, which was propagating further includes that video_core did not depend on. | ||||
| * | emit_spirv_warp: Fix shuffle ops for 64-thread warp sizes | 2021-08-31 | 1 | -1/+29 | |
| | | |||||
| * | emit_spirv_warp: Fix ballot related ops for 64-thread warp sizes | 2021-08-31 | 1 | -10/+11 | |
| | | |||||
| * | Move SPIR-V emission functions to their own header | 2021-07-22 | 1 | -0/+1 | |
| | | |||||
| * | spirv: Replace Constant/ConstantComposite with Const helper | 2021-07-22 | 1 | -3/+3 | |
| | | |||||
| * | shader: Add coarse derivatives | 2021-07-22 | 1 | -0/+8 | |
| | | |||||
| * | shader: Implement fine derivates constant propagation | 2021-07-22 | 1 | -0/+8 | |
| | | |||||
| * | shader: Move LaneId to the warp emission file and fix AMD | 2021-07-22 | 1 | -0/+8 | |
| | | |||||
| * | shader: Address feedback + clang format | 2021-07-22 | 1 | -1/+0 | |
| | | |||||
| * | shader_recompiler,video_core: Cleanup some GCC and Clang errors | 2021-07-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | Mostly fixing unused *, implicit conversion, braced scalar init, fpermissive, and some others. Some Clang errors likely remain in video_core, and std::ranges is still a pertinent issue in shader_recompiler shader_recompiler: cmake: Force bracket depth to 1024 on Clang Increases the maximum fold expression depth thread_worker: Include condition_variable Don't use list initializers in control flow Co-authored-by: ReinUsesLisp <reinuseslisp@airmail.cc> | ||||
| * | shader: Add subgroup masks | 2021-07-22 | 1 | -9/+37 | |
| | | |||||
| * | shader: Implement FSWZADD | 2021-07-22 | 1 | -0/+16 | |
| | | |||||
| * | shader: Implement SHFL | 2021-07-22 | 1 | -0/+135 | |