aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/shader_environment.cpp
AgeCommit message (Collapse)Author
2021-07-22shader_environment: Receive cache version from outsideReinUsesLisp
This allows us invalidating OpenGL and Vulkan separately in the future.
2021-07-22shader: Rework varyings and implement passthrough geometry shadersReinUsesLisp
Put all varyings into a single std::bitset with helpers to access it. Implement passthrough geometry shaders using host's.
2021-07-22shader: Unify shader stage typesReinUsesLisp
2021-07-22shader_environment: Fix local memory size calculationsReinUsesLisp
2021-07-22shader_environment: Add shader_local_memory_crs_size to local memory sizeameerj
Fixes DOOM 2016 missing local memory
2021-07-22shader: Initial OpenGL implementationReinUsesLisp
2021-07-22shader: Move pipeline cache logic to separate filesReinUsesLisp
Move code to separate files to be able to reuse it from OpenGL. This greatly simplifies the pipeline cache logic on Vulkan. Transform feedback state is not yet abstracted and it's still intrusively stored inside vk_pipeline_cache. It will be moved when needed on OpenGL.