summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-03-30 08:58:46 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:25 +0200
commit7a1c14269e20cffeed780f388c90a86f8bba1a92 (patch)
tree3a9807a9ef0d606840fdf645295764213c9cebb2 /src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
parentshader: Add PointCoord attribute (diff)
downloadyuzu-7a1c14269e20cffeed780f388c90a86f8bba1a92.tar
yuzu-7a1c14269e20cffeed780f388c90a86f8bba1a92.tar.gz
yuzu-7a1c14269e20cffeed780f388c90a86f8bba1a92.tar.bz2
yuzu-7a1c14269e20cffeed780f388c90a86f8bba1a92.tar.lz
yuzu-7a1c14269e20cffeed780f388c90a86f8bba1a92.tar.xz
yuzu-7a1c14269e20cffeed780f388c90a86f8bba1a92.tar.zst
yuzu-7a1c14269e20cffeed780f388c90a86f8bba1a92.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/vk_pipeline_cache.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
index 6cde01491..eb4df9000 100644
--- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
+++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
@@ -864,6 +864,9 @@ Shader::Profile PipelineCache::MakeProfile(const GraphicsPipelineCacheKey& key,
Shader::Profile profile{base_profile};
if (stage == Shader::Stage::VertexB) {
profile.convert_depth_mode = key.state.ndc_minus_one_to_one != 0;
+ if (key.state.topology == Maxwell::PrimitiveTopology::Points) {
+ profile.fixed_state_point_size = Common::BitCast<float>(key.state.point_size);
+ }
std::ranges::transform(key.state.attributes, profile.generic_input_types.begin(),
&CastAttributeType);
}