| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-12-10 | shader: Implement MEMBAR.GL | ReinUsesLisp | |
| Implement using memoryBarrier in GLSL and OpMemoryBarrier on SPIR-V. | |||
| 2019-12-09 | shader_ir/other: Implement S2R InvocationId | ReinUsesLisp | |
| 2019-12-09 | shader: Keep track of shaders using warp instructions | ReinUsesLisp | |
| 2019-12-09 | shader_ir/memory: Implement patch stores | ReinUsesLisp | |
| 2019-12-06 | Merge pull request #3109 from FernandoS27/new-instr | bunnei | |
| Implement FLO & TXD Instructions on GPU Shaders | |||
| 2019-11-27 | video_core/const_buffer_locker: Make use of std::tie in HasEqualKeys() | Lioncash | |
| Tidies it up a little bit visually. | |||
| 2019-11-27 | video_core/const_buffer_locker: Remove unused includes | Lioncash | |
| 2019-11-27 | video_core/const_buffer_locker: Remove #pragma once from cpp file | Lioncash | |
| Silences a compiler warning. | |||
| 2019-11-22 | video_core: Unify ProgramType and ShaderStage into ShaderType | ReinUsesLisp | |
| 2019-11-22 | shader/texture: Handle TLDS texture type mismatches | ReinUsesLisp | |
| Some games like "Fire Emblem: Three Houses" bind 2D textures to offsets used by instructions of 1D textures. To handle the discrepancy this commit uses the the texture type from the binding and modifies the emitted code IR to build a valid backend expression. E.g.: Bound texture is 2D and instruction is 1D, the emitted IR samples a 2D texture in the coordinate ivec2(X, 0). | |||
| 2019-11-22 | shader/texture: Deduce texture buffers from locker | ReinUsesLisp | |
| Instead of specializing shaders to separate texture buffers from 1D textures, use the locker to deduce them while they are being decoded. | |||
| 2019-11-19 | shader/other: Reduce DEPBAR log severity | ReinUsesLisp | |
| While DEPBAR is stubbed it doesn't change anything from our end. Shading languages handle what this instruction does implicitly. We are not getting anything out fo this log except noise. | |||
| 2019-11-18 | Shader_IR: Address Feedback | Fernando Sahmkow | |
| 2019-11-14 | Shader_IR: Implement TXD instruction. | Fernando Sahmkow | |
| 2019-11-14 | Shader_IR: Implement FLO instruction. | Fernando Sahmkow | |
| 2019-11-14 | Merge pull request #3081 from ReinUsesLisp/fswzadd-shuffles | Fernando Sahmkow | |
| shader: Implement FSWZADD and reimplement SHFL | |||
| 2019-11-13 | Merge pull request #3084 from ReinUsesLisp/cast-warnings | Rodrigo Locatti | |
| video_core: Treat implicit conversions as errors | |||
| 2019-11-08 | video_core: Silence implicit conversion warnings | ReinUsesLisp | |
| 2019-11-07 | shader_ir/warp: Implement FSWZADD | ReinUsesLisp | |
| 2019-11-07 | gl_shader_decompiler: Reimplement shuffles with platform agnostic intrinsics | ReinUsesLisp | |
| 2019-11-07 | Merge pull request #3032 from ReinUsesLisp/simplify-control-flow-brx | bunnei | |
| shader/control_flow: Abstract repeated code chunks in BRX tracking | |||
| 2019-11-07 | shader/control_flow: Specify constness on caller lambdas | Rodrigo Locatti | |
| Update src/video_core/shader/control_flow.cpp Co-Authored-By: Mat M. <mathew1800@gmail.com> Update src/video_core/shader/control_flow.cpp Co-Authored-By: Mat M. <mathew1800@gmail.com> Update src/video_core/shader/control_flow.cpp Co-Authored-By: Mat M. <mathew1800@gmail.com> Update src/video_core/shader/control_flow.cpp Co-Authored-By: Mat M. <mathew1800@gmail.com> Update src/video_core/shader/control_flow.cpp Co-Authored-By: Mat M. <mathew1800@gmail.com> Update src/video_core/shader/control_flow.cpp Co-Authored-By: Mat M. <mathew1800@gmail.com> | |||
| 2019-11-07 | shader/control_flow: Use callable template instead of std::function | ReinUsesLisp | |
| 2019-11-07 | shader/control_flow: Abstract repeated code chunks in BRX tracking | ReinUsesLisp | |
| Remove copied and pasted for cycles into a common templated function. | |||
| 2019-11-07 | shader/control_flow: Silence Intellisense cast warnings | ReinUsesLisp | |
| 2019-11-07 | shader/control_flow: Remove brace initializer in std containers | ReinUsesLisp | |
| These containers have a default constructor. | |||
| 2019-11-07 | shader/decode: Reduce severity of arithmetic rounding warnings | ReinUsesLisp | |
| 2019-11-07 | shader/arithmetic: Reduce RRO stub severity | ReinUsesLisp | |
| 2019-11-07 | shader/texture: Remove NODEP warnings | ReinUsesLisp | |
| These warnings don't offer meaningful information while decoding shaders. Remove them. | |||
| 2019-11-06 | Merge pull request #3039 from ReinUsesLisp/cleanup-samplers | Rodrigo Locatti | |
| shader/node: Unpack bindless texture encoding | |||
| 2019-10-30 | Shader_IR: Fix regression on TLD4 | Fernando Sahmkow | |
| Originally on the last commit I thought TLD4 acted the same as TLD4S and didn't have a mask. It actually does have a component mask. This commit corrects that. | |||
| 2019-10-30 | Shader_IR: Fix TLD4 and add Bindless Variant. | Fernando Sahmkow | |
| This commit fixes an issue where not all 4 results of tld4 were being written, the color component was defaulted to red, among other things. It also implements the bindless variant. | |||
| 2019-10-29 | shader/node: Unpack bindless texture encoding | ReinUsesLisp | |
| Bindless textures were using u64 to pack the buffer and offset from where they come from. Drop this in favor of separated entries in the struct. Remove the usage of std::set in favor of std::list (it's not std::vector to avoid reference invalidations) for samplers and images. | |||
| 2019-10-26 | Merge pull request #2976 from FernandoS27/cache-fast-brx-rebased | Rodrigo Locatti | |
| Implement Fast BRX, fix TXQ and addapt the Shader Cache for it | |||
| 2019-10-26 | Shader_IR: Address Feedback. | Fernando Sahmkow | |
| 2019-10-26 | Merge pull request #3027 from lioncash/lookup | Rodrigo Locatti | |
| shader_ir: Use std::array with std::pair instead of std::unordered_map | |||
| 2019-10-25 | Merge pull request #3013 from FernandoS27/tld4s-fix | Rodrigo Locatti | |
| Shader_Ir: Fix TLD4S from using a component mask. | |||
| 2019-10-25 | gl_shader_cache: Implement locker variants invalidation | ReinUsesLisp | |
| 2019-10-25 | gl_shader_disk_cache: Store and load fast BRX | ReinUsesLisp | |
| 2019-10-25 | const_buffer_locker: Minor style changes | ReinUsesLisp | |
| 2019-10-25 | gl_shader_decompiler: Move entries to a separate function | ReinUsesLisp | |
| 2019-10-25 | Shader_IR: Implement Fast BRX and allow multi-branches in the CFG. | Fernando Sahmkow | |
| 2019-10-25 | Shader_IR: Correct typo in Consistent method. | Fernando Sahmkow | |
| 2019-10-25 | Shader_IR: allow lookup of texture samplers within the shader_ir for ↵ | Fernando Sahmkow | |
| instructions that don't provide it | |||
| 2019-10-25 | Shader_IR: Implement Fast BRX and allow multi-branches in the CFG. | Fernando Sahmkow | |
| 2019-10-25 | Shader_Cache: setup connection of ConstBufferLocker | Fernando Sahmkow | |
| 2019-10-25 | VideoCore: Unify const buffer accessing along engines and provide ↵ | Fernando Sahmkow | |
| ConstBufferLocker class to shaders. | |||
| 2019-10-25 | Shader_IR: Implement BRX tracking. | Fernando Sahmkow | |
| 2019-10-24 | shader_ir: Use std::array with pair instead of unordered_map | Lioncash | |
| Given the overall size of the maps are very small, we can use arrays of pairs here instead of always heap allocating a new map every time the functions are called. Given the small size of the maps, the difference in container lookups are negligible, especially given the entries are already sorted. | |||
| 2019-10-23 | video_core/shader: Resolve instances of variable shadowing | Lioncash | |
| Silences a few -Wshadow warnings. | |||
