mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-26 02:54:17 +01:00
Vulkan: Always disable blending for integer formats (#317)
Should fix a warning in the Vulkan validation layer and avoid a sigtrap in MoltenVk
This commit is contained in:
parent
ecfbbd4e26
commit
cceb4f6d0e
@ -1,4 +1,5 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
#include "Cafe/HW/Latte/ISA/LatteReg.h"
|
||||||
#include "util/math/vector2.h"
|
#include "util/math/vector2.h"
|
||||||
|
|
||||||
class VKRMoveableRefCounterRef
|
class VKRMoveableRefCounterRef
|
||||||
@ -150,14 +151,28 @@ public:
|
|||||||
|
|
||||||
struct AttachmentInfo_t
|
struct AttachmentInfo_t
|
||||||
{
|
{
|
||||||
AttachmentEntryColor_t colorAttachment[8];
|
AttachmentEntryColor_t colorAttachment[Latte::GPU_LIMITS::NUM_COLOR_ATTACHMENTS];
|
||||||
AttachmentEntryDepth_t depthAttachment;
|
AttachmentEntryDepth_t depthAttachment;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
VkFormat GetColorFormat(size_t index)
|
||||||
|
{
|
||||||
|
if (index >= Latte::GPU_LIMITS::NUM_COLOR_ATTACHMENTS)
|
||||||
|
return VK_FORMAT_UNDEFINED;
|
||||||
|
return m_colorAttachmentFormat[index];
|
||||||
|
}
|
||||||
|
|
||||||
|
VkFormat GetDepthFormat()
|
||||||
|
{
|
||||||
|
return m_depthAttachmentFormat;
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
VKRObjectRenderPass(AttachmentInfo_t& attachmentInfo, sint32 colorAttachmentCount = 8);
|
VKRObjectRenderPass(AttachmentInfo_t& attachmentInfo, sint32 colorAttachmentCount = Latte::GPU_LIMITS::NUM_COLOR_ATTACHMENTS);
|
||||||
~VKRObjectRenderPass() override;
|
~VKRObjectRenderPass() override;
|
||||||
VkRenderPass m_renderPass{ VK_NULL_HANDLE };
|
VkRenderPass m_renderPass{ VK_NULL_HANDLE };
|
||||||
|
VkFormat m_colorAttachmentFormat[Latte::GPU_LIMITS::NUM_COLOR_ATTACHMENTS];
|
||||||
|
VkFormat m_depthAttachmentFormat;
|
||||||
uint64 m_hashForPipeline; // helper var. Holds hash of all the renderpass creation parameters (mainly the formats) that affect the pipeline state
|
uint64 m_hashForPipeline; // helper var. Holds hash of all the renderpass creation parameters (mainly the formats) that affect the pipeline state
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -609,7 +609,29 @@ void PipelineCompiler::InitRasterizerState(const LatteContextRegister& latteRegi
|
|||||||
multisampling.rasterizationSamples = VK_SAMPLE_COUNT_1_BIT;
|
multisampling.rasterizationSamples = VK_SAMPLE_COUNT_1_BIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PipelineCompiler::InitBlendState(const LatteContextRegister& latteRegister, PipelineInfo* pipelineInfo, bool& usesBlendConstants)
|
bool _IsVkIntegerFormat(VkFormat fmt)
|
||||||
|
{
|
||||||
|
return
|
||||||
|
// 8bit integer formats
|
||||||
|
fmt == VK_FORMAT_R8_UINT || fmt == VK_FORMAT_R8_SINT ||
|
||||||
|
fmt == VK_FORMAT_R8G8_UINT || fmt == VK_FORMAT_R8G8_SINT ||
|
||||||
|
fmt == VK_FORMAT_R8G8B8_UINT || fmt == VK_FORMAT_R8G8B8_SINT ||
|
||||||
|
fmt == VK_FORMAT_R8G8B8A8_UINT || fmt == VK_FORMAT_R8G8B8A8_SINT ||
|
||||||
|
fmt == VK_FORMAT_B8G8R8A8_UINT || fmt == VK_FORMAT_B8G8R8A8_SINT ||
|
||||||
|
// 16bit integer formats
|
||||||
|
fmt == VK_FORMAT_R16_UINT || fmt == VK_FORMAT_R16_SINT ||
|
||||||
|
fmt == VK_FORMAT_R16G16_UINT || fmt == VK_FORMAT_R16G16_SINT ||
|
||||||
|
fmt == VK_FORMAT_R16G16B16_UINT || fmt == VK_FORMAT_R16G16B16_SINT ||
|
||||||
|
fmt == VK_FORMAT_R16G16B16A16_UINT || fmt == VK_FORMAT_R16G16B16A16_SINT ||
|
||||||
|
// 32bit integer formats
|
||||||
|
fmt == VK_FORMAT_R32_UINT || fmt == VK_FORMAT_R32_SINT ||
|
||||||
|
fmt == VK_FORMAT_R32G32_UINT || fmt == VK_FORMAT_R32G32_SINT ||
|
||||||
|
fmt == VK_FORMAT_R32G32B32_UINT || fmt == VK_FORMAT_R32G32B32_SINT ||
|
||||||
|
fmt == VK_FORMAT_R32G32B32A32_UINT || fmt == VK_FORMAT_R32G32B32A32_SINT;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void PipelineCompiler::InitBlendState(const LatteContextRegister& latteRegister, PipelineInfo* pipelineInfo, bool& usesBlendConstants, VKRObjectRenderPass* renderPassObj)
|
||||||
{
|
{
|
||||||
const Latte::LATTE_CB_COLOR_CONTROL& colorControlReg = latteRegister.CB_COLOR_CONTROL;
|
const Latte::LATTE_CB_COLOR_CONTROL& colorControlReg = latteRegister.CB_COLOR_CONTROL;
|
||||||
uint32 blendEnableMask = colorControlReg.get_BLEND_MASK();
|
uint32 blendEnableMask = colorControlReg.get_BLEND_MASK();
|
||||||
@ -625,6 +647,12 @@ void PipelineCompiler::InitBlendState(const LatteContextRegister& latteRegister,
|
|||||||
else
|
else
|
||||||
entry.blendEnable = VK_FALSE;
|
entry.blendEnable = VK_FALSE;
|
||||||
|
|
||||||
|
if (entry.blendEnable != VK_FALSE && _IsVkIntegerFormat(renderPassObj->GetColorFormat(i)))
|
||||||
|
{
|
||||||
|
// force-disable blending for integer formats
|
||||||
|
entry.blendEnable = VK_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
const auto& blendControlReg = latteRegister.CB_BLENDN_CONTROL[i];
|
const auto& blendControlReg = latteRegister.CB_BLENDN_CONTROL[i];
|
||||||
|
|
||||||
entry.colorWriteMask = (renderTargetMask >> (i * 4)) & 0xF;
|
entry.colorWriteMask = (renderTargetMask >> (i * 4)) & 0xF;
|
||||||
@ -873,7 +901,7 @@ bool PipelineCompiler::InitFromCurrentGPUState(PipelineInfo* pipelineInfo, const
|
|||||||
bool usesDepthBias = false;
|
bool usesDepthBias = false;
|
||||||
InitRasterizerState(latteRegister, vkRenderer, isPrimitiveRect, usesDepthBias);
|
InitRasterizerState(latteRegister, vkRenderer, isPrimitiveRect, usesDepthBias);
|
||||||
bool usesBlendConstants = false;
|
bool usesBlendConstants = false;
|
||||||
InitBlendState(latteRegister, pipelineInfo, usesBlendConstants);
|
InitBlendState(latteRegister, pipelineInfo, usesBlendConstants, renderPassObj);
|
||||||
InitDescriptorSetLayouts(vkRenderer, pipelineInfo, pipelineInfo->vertexShader, pipelineInfo->pixelShader, pipelineInfo->geometryShader);
|
InitDescriptorSetLayouts(vkRenderer, pipelineInfo, pipelineInfo->vertexShader, pipelineInfo->pixelShader, pipelineInfo->geometryShader);
|
||||||
|
|
||||||
// ##########################################################################################################################################
|
// ##########################################################################################################################################
|
||||||
|
@ -23,7 +23,7 @@ private:
|
|||||||
void InitInputAssemblyState(const Latte::LATTE_VGT_PRIMITIVE_TYPE::E_PRIMITIVE_TYPE primitiveMode);
|
void InitInputAssemblyState(const Latte::LATTE_VGT_PRIMITIVE_TYPE::E_PRIMITIVE_TYPE primitiveMode);
|
||||||
void InitViewportState();
|
void InitViewportState();
|
||||||
void InitRasterizerState(const LatteContextRegister& latteRegister, VulkanRenderer* vkRenderer, bool isPrimitiveRect, bool& usesDepthBias);
|
void InitRasterizerState(const LatteContextRegister& latteRegister, VulkanRenderer* vkRenderer, bool isPrimitiveRect, bool& usesDepthBias);
|
||||||
void InitBlendState(const LatteContextRegister& latteRegister, PipelineInfo* pipelineInfo, bool& usesBlendConstants);
|
void InitBlendState(const LatteContextRegister& latteRegister, PipelineInfo* pipelineInfo, bool& usesBlendConstants, VKRObjectRenderPass* renderPassObj);
|
||||||
void InitDescriptorSetLayouts(VulkanRenderer* vkRenderer, PipelineInfo* vkrPipelineInfo, LatteDecompilerShader* vertexShader, LatteDecompilerShader* pixelShader, LatteDecompilerShader* geometryShader);
|
void InitDescriptorSetLayouts(VulkanRenderer* vkRenderer, PipelineInfo* vkrPipelineInfo, LatteDecompilerShader* vertexShader, LatteDecompilerShader* pixelShader, LatteDecompilerShader* geometryShader);
|
||||||
void InitDepthStencilState();
|
void InitDepthStencilState();
|
||||||
void InitDynamicState(PipelineInfo* pipelineInfo, bool usesBlendConstants, bool usesDepthBias);
|
void InitDynamicState(PipelineInfo* pipelineInfo, bool usesBlendConstants, bool usesDepthBias);
|
||||||
|
@ -4085,7 +4085,7 @@ VKRObjectRenderPass::VKRObjectRenderPass(AttachmentInfo_t& attachmentInfo, sint3
|
|||||||
{
|
{
|
||||||
// generate helper hash for pipeline state
|
// generate helper hash for pipeline state
|
||||||
uint64 stateHash = 0;
|
uint64 stateHash = 0;
|
||||||
for (int i = 0; i < 8; ++i)
|
for (int i = 0; i < Latte::GPU_LIMITS::NUM_COLOR_ATTACHMENTS; ++i)
|
||||||
{
|
{
|
||||||
if (attachmentInfo.colorAttachment[i].isPresent || attachmentInfo.colorAttachment[i].viewObj)
|
if (attachmentInfo.colorAttachment[i].isPresent || attachmentInfo.colorAttachment[i].viewObj)
|
||||||
{
|
{
|
||||||
@ -4102,7 +4102,7 @@ VKRObjectRenderPass::VKRObjectRenderPass(AttachmentInfo_t& attachmentInfo, sint3
|
|||||||
|
|
||||||
// setup Vulkan renderpass
|
// setup Vulkan renderpass
|
||||||
std::vector<VkAttachmentDescription> attachments_descriptions;
|
std::vector<VkAttachmentDescription> attachments_descriptions;
|
||||||
std::array<VkAttachmentReference, 8> color_attachments_references{};
|
std::array<VkAttachmentReference, Latte::GPU_LIMITS::NUM_COLOR_ATTACHMENTS> color_attachments_references{};
|
||||||
cemu_assert(colorAttachmentCount <= color_attachments_references.size());
|
cemu_assert(colorAttachmentCount <= color_attachments_references.size());
|
||||||
sint32 numColorAttachments = 0;
|
sint32 numColorAttachments = 0;
|
||||||
for (int i = 0; i < 8; ++i)
|
for (int i = 0; i < 8; ++i)
|
||||||
@ -4110,8 +4110,10 @@ VKRObjectRenderPass::VKRObjectRenderPass(AttachmentInfo_t& attachmentInfo, sint3
|
|||||||
if (attachmentInfo.colorAttachment[i].viewObj == nullptr && attachmentInfo.colorAttachment[i].isPresent == false)
|
if (attachmentInfo.colorAttachment[i].viewObj == nullptr && attachmentInfo.colorAttachment[i].isPresent == false)
|
||||||
{
|
{
|
||||||
color_attachments_references[i].attachment = VK_ATTACHMENT_UNUSED;
|
color_attachments_references[i].attachment = VK_ATTACHMENT_UNUSED;
|
||||||
|
m_colorAttachmentFormat[i] = VK_FORMAT_UNDEFINED;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
m_colorAttachmentFormat[i] = attachmentInfo.colorAttachment[i].format;
|
||||||
|
|
||||||
color_attachments_references[i].attachment = (uint32)attachments_descriptions.size();
|
color_attachments_references[i].attachment = (uint32)attachments_descriptions.size();
|
||||||
color_attachments_references[i].layout = VK_IMAGE_LAYOUT_GENERAL;
|
color_attachments_references[i].layout = VK_IMAGE_LAYOUT_GENERAL;
|
||||||
@ -4135,12 +4137,14 @@ VKRObjectRenderPass::VKRObjectRenderPass(AttachmentInfo_t& attachmentInfo, sint3
|
|||||||
if (attachmentInfo.depthAttachment.viewObj == nullptr && attachmentInfo.depthAttachment.isPresent == false)
|
if (attachmentInfo.depthAttachment.viewObj == nullptr && attachmentInfo.depthAttachment.isPresent == false)
|
||||||
{
|
{
|
||||||
depth_stencil_attachments_references.attachment = VK_ATTACHMENT_UNUSED;
|
depth_stencil_attachments_references.attachment = VK_ATTACHMENT_UNUSED;
|
||||||
|
m_depthAttachmentFormat = VK_FORMAT_UNDEFINED;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
hasDepthStencilAttachment = true;
|
hasDepthStencilAttachment = true;
|
||||||
depth_stencil_attachments_references.attachment = (uint32)attachments_descriptions.size();
|
depth_stencil_attachments_references.attachment = (uint32)attachments_descriptions.size();
|
||||||
depth_stencil_attachments_references.layout = VK_IMAGE_LAYOUT_GENERAL;
|
depth_stencil_attachments_references.layout = VK_IMAGE_LAYOUT_GENERAL;
|
||||||
|
m_depthAttachmentFormat = attachmentInfo.depthAttachment.format;
|
||||||
|
|
||||||
VkAttachmentDescription entry{};
|
VkAttachmentDescription entry{};
|
||||||
entry.format = attachmentInfo.depthAttachment.format;
|
entry.format = attachmentInfo.depthAttachment.format;
|
||||||
|
Loading…
Reference in New Issue
Block a user