summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/CMakeLists.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* msvc: set warning level to /W4 globallyDanila Malyutin2023-09-031-2/+0
| | | | And fix a bunch of warnings
* Merge pull request #10699 from liamwhite/conditional-barrierMatías Locatti2023-06-121-0/+1
|\ | | | | shader_recompiler: remove barriers in conditional control flow when device lacks support
| * shader_recompiler: remove barriers in conditional control flow when device lacks supportLiam2023-06-101-0/+1
| |
* | shader_recompiler: translate f64 to f32 when unsupported on hostLiam2023-06-101-0/+1
|/
* Merge pull request #9300 from ameerj/pchliamwhite2022-12-031-0/+5
|\ | | | | CMake: Use precompiled headers to improve compile times
| * CMake: Use precompiled headersameerj2022-11-301-0/+5
| |
* | Merge pull request #9289 from liamwhite/fruit-companyliamwhite2022-12-031-0/+1
|\ \ | | | | | | general: fix compile for Apple Clang
| * | general: fix compile for Apple ClangLiam2022-11-231-0/+1
| |/
* / shader_recompiler: add gl_Layer translation GS for older hardwareLiam2022-12-011-0/+1
|/
* Merge pull request #8858 from vonchenplus/mipmapbunnei2022-11-041-0/+1
|\ | | | | video_core: Generate mipmap texture by drawing
| * video_core: Generate mipmap texture by drawingFengChen2022-09-201-0/+1
| |
* | CMakeLists: Remove redundant warningsMorph2022-10-221-2/+0
| | | | | | | | These warnings are already included in /W3.
* | CMakeLists: Treat MSVC warnings as errorsMorph2022-10-221-1/+0
| |
* | general: Enforce C4800 everywhere except in video_coreMorph2022-10-221-1/+0
| |
* | CMakeLists: Remove all redundant warningsMorph2022-10-221-8/+2
|/ | | | These are already explicitly or implicitly set in src/CMakeLists.txt
* chore: make yuzu REUSE compliantAndrea Pappacoda2022-07-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
* CMakeLists: Make variable shadowing a compile-time errorMorph2022-06-141-3/+0
| | | | Now that the entire project is free of variable shadowing, we can enforce this as a compile time error to prevent any further introduction of this logic bug.
* shader_recompiler: Rename backend emit_context filesameerj2021-12-051-6/+6
|
* shader: Fix resolution scaling passReinUsesLisp2021-11-161-0/+1
|
* shader: Rework varyings and implement passthrough geometry shadersReinUsesLisp2021-07-231-0/+1
| | | | | | Put all varyings into a single std::bitset with helpers to access it. Implement passthrough geometry shaders using host's.
* shader: Add int64 to int32 lowering passReinUsesLisp2021-07-231-0/+1
|
* shader: Split profile and runtime info headersReinUsesLisp2021-07-231-0/+1
|
* shader: Add support for native 16-bit floatsReinUsesLisp2021-07-231-0/+1
|
* shader: Rename maxwell/program.h to translate_program.hReinUsesLisp2021-07-231-2/+2
|
* glsl: Reorganize backend code, remove unneeded [[maybe_unused]]ameerj2021-07-231-1/+0
|
* glsl: Rework variable allocator to allow for variable reuseameerj2021-07-231-2/+2
|
* glsl: Initial backendameerj2021-07-231-0/+26
|
* glasm: Use storage buffers instead of global memory when possibleReinUsesLisp2021-07-231-1/+0
|
* glasm: Implement image atomicsReinUsesLisp2021-07-231-1/+0
|
* glasm: Rework control flow introducing a syntax listReinUsesLisp2021-07-231-0/+1
| | | | | This commit regresses VertexA shaders, their transformation pass has to be adapted to the new control flow.
* glasm: Add GLASM backend infrastructureReinUsesLisp2021-07-231-4/+30
|
* Move SPIR-V emission functions to their own headerReinUsesLisp2021-07-231-0/+2
|
* shader: Implement Int32 SUATOM/SUREDameerj2021-07-231-0/+2
|
* shader: Remove shader utilReinUsesLisp2021-07-231-6/+0
|
* shader: Implement VertexA stageFernandoS272021-07-231-0/+1
|
* cmake: Link to common in shader_recompilerReinUsesLisp2021-07-231-1/+1
|
* shader: Move microinstruction header to the value headerReinUsesLisp2021-07-231-1/+0
|
* shader: Implement PIXLD.MY_INDEXReinUsesLisp2021-07-231-0/+1
|
* shader: Implement tessellation shaders, polygon mode and invocation idReinUsesLisp2021-07-231-0/+2
|
* shader: Implement OUTReinUsesLisp2021-07-231-0/+1
|
* shader: Stub ISBERDReinUsesLisp2021-07-231-0/+1
|
* shader: Implement ATOM/S and REDameerj2021-07-231-0/+3
|
* shader: Implement SULD and SUSTReinUsesLisp2021-07-231-0/+1
|
* shader: Address feedback + clang formatlat9nq2021-07-231-0/+2
|
* shader_recompiler,video_core: Cleanup some GCC and Clang errorslat9nq2021-07-231-0/+2
| | | | | | | | | | | | | | | | | 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: Implement AL2PFernandoS272021-07-231-0/+1
|
* shader: Abstract breadth searches and use the abstractionReinUsesLisp2021-07-231-0/+1
|
* shader: Implement MEMBARFernandoS272021-07-231-0/+2
|
* shader: Implement TXDFernandoS272021-07-231-0/+1
|
* shader: Implement TMML partiallyFernandoS272021-07-231-0/+1
|
* shader: Implement TLDSFernandoS272021-07-231-0/+1
|
* shader: Implement TLDFernandoS272021-07-231-0/+1
|
* shader: Implement FSWZADDameerj2021-07-231-0/+1
|
* shader: Implement BRXFernandoS272021-07-231-0/+4
|
* shader: Implement LDS, STS, LDL, and STS and use SPIR-V 1.4 when availableReinUsesLisp2021-07-231-0/+2
|
* shader: Implement VMAD, VMNMX, VSETPameerj2021-07-231-0/+5
|
* shader: Implement TXQ and fix FragDepthReinUsesLisp2021-07-231-0/+1
|
* shader: Implement TLD4S.FernandoS272021-07-231-0/+1
|
* shader: Implement TLD4 and TLD4_BFernandoS272021-07-231-0/+1
|
* shader: Implement SHFLameerj2021-07-231-1/+2
|
* shader: Implement NDC [-1, 1], attribute types and default varying initializationReinUsesLisp2021-07-231-0/+1
|
* shader: Implement VOTEameerj2021-07-231-0/+2
|
* shader: Implement DMNMX, DSET, DSETPameerj2021-07-231-0/+3
|
* shader: Implement F2FFernandoS272021-07-231-0/+1
|
* shader: Implement DMUL and DFMAameerj2021-07-231-0/+2
| | | | Also add a missing const on DADD
* shader: Implement HSETP2FernandoS272021-07-231-0/+1
|
* shader: Implement HSET2FernandoS272021-07-231-0/+1
|
* shader: Implement HMUL2FernandoS272021-07-231-0/+1
|
* shader: Implement HFMA2FernandoS272021-07-231-0/+1
|
* shader: Refactor half floating instructionsFernandoS272021-07-231-0/+2
|
* shader: Implement I2FReinUsesLisp2021-07-231-0/+1
|
* shader: Add partial rasterizer integrationReinUsesLisp2021-07-231-2/+2
|
* shader: Implement DADDameerj2021-07-231-0/+1
|
* shader: Implement CSET and CSETPameerj2021-07-231-0/+1
|
* shader: Implement FSET and FSETPameerj2021-07-231-0/+2
| | | | Also fix oversight with adding SignedZeroInfNanPreserve execution mode.
* shader: Implement TEXSReinUsesLisp2021-07-231-1/+2
|
* shader: Implement CAL inlining function callsReinUsesLisp2021-07-231-4/+2
|
* shader: Implement FMNMXameerj2021-07-231-0/+1
| | | | And add a const in FCMP
* shader: Implement FCMPameerj2021-07-231-0/+1
| | | | still need to configure some settings for NV denorm flush and intel NaN
* shader: Partial implementation of LDCReinUsesLisp2021-07-231-0/+1
|
* shader: Initial support for textures and TEXReinUsesLisp2021-07-231-0/+3
|
* shader: Implement R2Pameerj2021-07-231-0/+1
|
* shader: Implement SHFameerj2021-07-231-0/+1
|
* shader: Implement LEAameerj2021-07-231-0/+1
|
* shader: Implement I2Iameerj2021-07-231-0/+1
|
* shader: Implement HADD2ReinUsesLisp2021-07-231-0/+1
|
* shader: Implement LOP and LOP3ameerj2021-07-231-0/+2
|
* shader: Implement IADD3ameerj2021-07-231-0/+1
|
* shader: Implement PSETPameerj2021-07-231-1/+2
|
* Implement PSET, refactor common comparison funcsameerj2021-07-231-0/+1
|
* shader: Implement FLOameerj2021-07-231-0/+1
|
* shader: Implement ISET, add common_funcsameerj2021-07-231-0/+3
|
* shader: Implement ICMPameerj2021-07-231-0/+1
|
* shader: Implement IMNMXameerj2021-07-231-0/+1
|
* shader: Implement BFIameerj2021-07-231-0/+1
|
* shader: Implement BFEameerj2021-07-231-0/+1
|
* shader: Implement POPCameerj2021-07-231-0/+1
|
* shader: Implement SHRameerj2021-07-231-0/+1
|
* shader: Implement SELameerj2021-07-231-0/+1
|
* shader: FMUL, select, RRO, and MUFU fixesReinUsesLisp2021-07-231-0/+1
|
* shader: Rename, implement FADD.SAT and P2R (imm)ReinUsesLisp2021-07-231-1/+2
|
* shader: Add denorm flush supportReinUsesLisp2021-07-231-3/+2
|
* spirv: Add lower fp16 to fp32 passReinUsesLisp2021-07-231-0/+2
|
* shader: Primitive Vulkan integrationReinUsesLisp2021-07-231-3/+10
|
* spirv: Initial bindings supportReinUsesLisp2021-07-231-0/+4
|
* shader: Support SSA loops on IRReinUsesLisp2021-07-231-0/+2
|
* shader: Initial implementation of an ASTReinUsesLisp2021-07-231-2/+2
|
* spirv: Initial SPIR-V supportReinUsesLisp2021-07-231-1/+14
|
* shader: Add pools and rename filesReinUsesLisp2021-07-231-5/+9
|
* shader: Constant propagation and global memory to storage bufferReinUsesLisp2021-07-231-0/+2
|
* shader: Initial instruction supportReinUsesLisp2021-07-231-2/+11
|
* shader: SSA and dominanceReinUsesLisp2021-07-231-0/+3
|
* shader: Initial recompiler workReinUsesLisp2021-07-231-0/+86