summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/fixed_pipeline_state.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-02-28maxwell_3d: Flatten cull and front face registersReinUsesLisp1-4/+4
2020-01-07fixed_pipeline_state: Add depth clampReinUsesLisp1-4/+6
2019-12-24fixed_pipeline_state: Define symetric operator!= and mark as noexceptReinUsesLisp1-20/+71
Marks as noexcept Hash, operator== and operator!= for consistency.
2019-12-23fixed_pipeline_state: Define structure and loadersReinUsesLisp1-0/+231
The intention behind this hasheable structure is to describe the state of fixed function pipeline state that gets compiled to a single graphics pipeline state object. This is all dynamic state in OpenGL but Vulkan wants it in an immutable state, even if hardware can edit it freely. In this commit the structure is defined in an optimized state (it uses booleans, has paddings and many data entries that can be packed to single integers). This is intentional as an initial implementation that is easier to debug, implement and review. It will be optimized in later stages, or it might change if Vulkan gets more dynamic states.