Properly hash dynamic states in pipeline cache

This commit is contained in:
Billy Laws 2022-12-03 19:54:16 +00:00
parent 7c4b4765bf
commit 9115b8cae8
2 changed files with 8 additions and 2 deletions

View File

@ -25,6 +25,8 @@ namespace skyline::gpu::cache {
multisampleState(state.multisampleState),
depthStencilState(state.depthStencilState),
colorBlendState(state.colorBlendState),
dynamicStates(VEC_CPY(dynamicState.pDynamicStates, dynamicState.dynamicStateCount)),
dynamicState(state.dynamicState),
colorBlendAttachments(VEC_CPY(colorBlendState.pAttachments, colorBlendState.attachmentCount)) {
auto &vertexInputState{vertexState.get<vk::PipelineVertexInputStateCreateInfo>()};
vertexInputState.pVertexBindingDescriptions = vertexBindings.data();
@ -36,6 +38,8 @@ namespace skyline::gpu::cache {
colorBlendState.pAttachments = colorBlendAttachments.data();
dynamicState.pDynamicStates = dynamicStates.data();
for (auto &colorFormat : state.colorFormats)
colorFormats.emplace_back(colorFormat);
@ -164,10 +168,11 @@ namespace skyline::gpu::cache {
HASH(static_cast<VkBlendFactor>(attachment.srcColorBlendFactor));
}
HASH(key.dynamicState.dynamicStateCount);
HASH(key.colorFormats.size());
for (auto format : key.colorFormats) {
for (auto format : key.colorFormats)
HASH(format);
}
HASH(key.depthStencilFormat);
HASH(key.sampleCount);

View File

@ -88,6 +88,7 @@ namespace skyline::gpu::cache {
vk::PipelineMultisampleStateCreateInfo multisampleState;
vk::PipelineDepthStencilStateCreateInfo depthStencilState;
vk::PipelineColorBlendStateCreateInfo colorBlendState;
std::vector<vk::DynamicState> dynamicStates;
vk::PipelineDynamicStateCreateInfo dynamicState;
std::vector<vk::PipelineColorBlendAttachmentState> colorBlendAttachments;