Skip to content

Commit

Permalink
Only use sample shading on vk_graphics_pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamer64ytb committed Jul 31, 2024
1 parent 2bd48f8 commit 22c4f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video_core/renderer_vulkan/renderer_vulkan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ void RendererVulkan::BuildPipelines() {

const vk::PipelineMultisampleStateCreateInfo multisampling = {
.rasterizationSamples = vk::SampleCountFlagBits::e1,
.sampleShadingEnable = Settings::values.use_sample_shading.GetValue(),
.sampleShadingEnable = false,
};

const vk::PipelineColorBlendAttachmentState colorblend_attachment = {
Expand Down

0 comments on commit 22c4f1c

Please sign in to comment.