forked from KhronosGroup/Vulkan-ValidationLayers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline_sub_state.cpp
235 lines (213 loc) · 11.9 KB
/
pipeline_sub_state.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/* Copyright (c) 2015-2017, 2019-2022 The Khronos Group Inc.
* Copyright (c) 2015-2017, 2019-2022 Valve Corporation
* Copyright (c) 2015-2017, 2019-2022 LunarG, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author: Nathaniel Cesario <[email protected]>
*/
#include "pipeline_sub_state.h"
#include "state_tracker.h"
VertexInputState::VertexInputState(const PIPELINE_STATE &p, const safe_VkGraphicsPipelineCreateInfo &create_info)
: parent(p), input_state(create_info.pVertexInputState), input_assembly_state(create_info.pInputAssemblyState) {
if (create_info.pVertexInputState) {
const auto *vici = create_info.pVertexInputState;
if (vici->vertexBindingDescriptionCount) {
const auto count = vici->vertexBindingDescriptionCount;
binding_descriptions.reserve(count);
binding_to_index_map.reserve(count);
for (uint32_t i = 0; i < count; i++) {
binding_descriptions.emplace_back(vici->pVertexBindingDescriptions[i]);
binding_to_index_map[binding_descriptions.back().binding] = i;
}
}
if (vici->vertexAttributeDescriptionCount) {
vertex_attribute_descriptions.reserve(vici->vertexAttributeDescriptionCount);
std::copy(vici->pVertexAttributeDescriptions,
vici->pVertexAttributeDescriptions + vici->vertexAttributeDescriptionCount,
std::back_inserter(vertex_attribute_descriptions));
}
vertex_attribute_alignments.reserve(vertex_attribute_descriptions.size());
for (const auto &attr : vertex_attribute_descriptions) {
VkDeviceSize vtx_attrib_req_alignment = FormatElementSize(attr.format);
if (FormatElementIsTexel(attr.format)) {
vtx_attrib_req_alignment = SafeDivision(vtx_attrib_req_alignment, FormatComponentCount(attr.format));
}
vertex_attribute_alignments.push_back(vtx_attrib_req_alignment);
}
}
}
PreRasterState::PreRasterState(const PIPELINE_STATE &p, const ValidationStateTracker &dev_data,
const safe_VkGraphicsPipelineCreateInfo &create_info, std::shared_ptr<const RENDER_PASS_STATE> rp)
: parent(p), rp_state(rp), subpass(create_info.subpass) {
pipeline_layout = dev_data.Get<PIPELINE_LAYOUT_STATE>(create_info.layout);
viewport_state = create_info.pViewportState;
rp_state = dev_data.Get<RENDER_PASS_STATE>(create_info.renderPass);
raster_state = create_info.pRasterizationState;
tess_create_info = create_info.pTessellationState;
for (uint32_t i = 0; i < create_info.stageCount; ++i) {
// TODO might need to filter out more than just fragment shaders here
if (create_info.pStages[i].stage != VK_SHADER_STAGE_FRAGMENT_BIT) {
auto module_state = dev_data.Get<SHADER_MODULE_STATE>(create_info.pStages[i].module);
if (!module_state) {
// If module is null and there is a VkShaderModuleCreateInfo in the pNext chain of the stage info, then this
// module is part of a library and the state must be created
const auto shader_ci = LvlFindInChain<VkShaderModuleCreateInfo>(create_info.pStages[i].pNext);
if (shader_ci) {
const uint32_t unique_shader_id = 0; // TODO GPU-AV rework required to get this value properly
module_state = dev_data.CreateShaderModuleState(*shader_ci, unique_shader_id);
}
}
if (module_state) {
const auto *stage_ci = &create_info.pStages[i];
switch (create_info.pStages[i].stage) {
case VK_SHADER_STAGE_VERTEX_BIT:
vertex_shader = std::move(module_state);
vertex_shader_ci = stage_ci;
break;
case VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT:
tessc_shader = std::move(module_state);
tessc_shader_ci = stage_ci;
break;
case VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT:
tesse_shader = std::move(module_state);
tesse_shader_ci = stage_ci;
break;
case VK_SHADER_STAGE_GEOMETRY_BIT:
geometry_shader = std::move(module_state);
geometry_shader_ci = stage_ci;
break;
// TODO mesh shaders?
default:
// TODO is this an error?
break;
}
}
}
}
}
std::unique_ptr<const safe_VkPipelineColorBlendStateCreateInfo> ToSafeColorBlendState(
const safe_VkPipelineColorBlendStateCreateInfo &cbs) {
// This is needlessly copied here. Might better to make this a plain pointer, with an optional "backing unique_ptr"
return layer_data::make_unique<const safe_VkPipelineColorBlendStateCreateInfo>(cbs);
}
std::unique_ptr<const safe_VkPipelineColorBlendStateCreateInfo> ToSafeColorBlendState(
const VkPipelineColorBlendStateCreateInfo &cbs) {
return layer_data::make_unique<const safe_VkPipelineColorBlendStateCreateInfo>(&cbs);
}
std::unique_ptr<const safe_VkPipelineMultisampleStateCreateInfo> ToSafeMultisampleState(
const safe_VkPipelineMultisampleStateCreateInfo &cbs) {
// This is needlessly copied here. Might better to make this a plain pointer, with an optional "backing unique_ptr"
return layer_data::make_unique<const safe_VkPipelineMultisampleStateCreateInfo>(cbs);
}
std::unique_ptr<const safe_VkPipelineMultisampleStateCreateInfo> ToSafeMultisampleState(
const VkPipelineMultisampleStateCreateInfo &cbs) {
return layer_data::make_unique<const safe_VkPipelineMultisampleStateCreateInfo>(&cbs);
}
std::unique_ptr<const safe_VkPipelineDepthStencilStateCreateInfo> ToSafeDepthStencilState(
const safe_VkPipelineDepthStencilStateCreateInfo &cbs) {
// This is needlessly copied here. Might better to make this a plain pointer, with an optional "backing unique_ptr"
return layer_data::make_unique<const safe_VkPipelineDepthStencilStateCreateInfo>(cbs);
}
std::unique_ptr<const safe_VkPipelineDepthStencilStateCreateInfo> ToSafeDepthStencilState(
const VkPipelineDepthStencilStateCreateInfo &cbs) {
return layer_data::make_unique<const safe_VkPipelineDepthStencilStateCreateInfo>(&cbs);
}
std::unique_ptr<const safe_VkPipelineShaderStageCreateInfo> ToShaderStageCI(const safe_VkPipelineShaderStageCreateInfo &cbs) {
// This is needlessly copied here. Might better to make this a plain pointer, with an optional "backing unique_ptr"
return layer_data::make_unique<const safe_VkPipelineShaderStageCreateInfo>(cbs);
}
std::unique_ptr<const safe_VkPipelineShaderStageCreateInfo> ToShaderStageCI(const VkPipelineShaderStageCreateInfo &cbs) {
return layer_data::make_unique<const safe_VkPipelineShaderStageCreateInfo>(&cbs);
}
template <typename CreateInfo>
void SetFragmentShaderInfoPrivate(FragmentShaderState &fs_state, const ValidationStateTracker &state_data,
const CreateInfo &create_info) {
for (uint32_t i = 0; i < create_info.stageCount; ++i) {
if (create_info.pStages[i].stage == VK_SHADER_STAGE_FRAGMENT_BIT) {
auto module_state = state_data.Get<SHADER_MODULE_STATE>(create_info.pStages[i].module);
if (!module_state) {
// If module is null and there is a VkShaderModuleCreateInfo in the pNext chain of the stage info, then this
// module is part of a library and the state must be created
const auto shader_ci = LvlFindInChain<VkShaderModuleCreateInfo>(create_info.pStages[i].pNext);
if (shader_ci) {
const uint32_t unique_shader_id = 0; // TODO GPU-AV rework required to get this value properly
module_state = state_data.CreateShaderModuleState(*shader_ci, unique_shader_id);
}
}
if (module_state) {
fs_state.fragment_shader = std::move(module_state);
fs_state.fragment_shader_ci = ToShaderStageCI(create_info.pStages[i]);
}
}
}
}
// static
void FragmentShaderState::SetFragmentShaderInfo(FragmentShaderState &fs_state, const ValidationStateTracker &state_data,
const VkGraphicsPipelineCreateInfo &create_info) {
SetFragmentShaderInfoPrivate(fs_state, state_data, create_info);
}
// static
void FragmentShaderState::SetFragmentShaderInfo(FragmentShaderState &fs_state, const ValidationStateTracker &state_data,
const safe_VkGraphicsPipelineCreateInfo &create_info) {
SetFragmentShaderInfoPrivate(fs_state, state_data, create_info);
}
FragmentShaderState::FragmentShaderState(const PIPELINE_STATE &p, const ValidationStateTracker &dev_data,
std::shared_ptr<const RENDER_PASS_STATE> rp, uint32_t subp, VkPipelineLayout layout)
: parent(p), rp_state(rp), subpass(subp), pipeline_layout(dev_data.Get<PIPELINE_LAYOUT_STATE>(layout)) {}
FragmentOutputState::FragmentOutputState(const PIPELINE_STATE &p, std::shared_ptr<const RENDER_PASS_STATE> rp, uint32_t sp)
: parent(p), rp_state(rp), subpass(sp) {}
// static
bool FragmentOutputState::IsBlendConstantsEnabled(const AttachmentVector &attachments) {
bool result = false;
for (const auto &attachment : attachments) {
if (VK_TRUE == attachment.blendEnable) {
if (((attachment.dstAlphaBlendFactor >= VK_BLEND_FACTOR_CONSTANT_COLOR) &&
(attachment.dstAlphaBlendFactor <= VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA)) ||
((attachment.dstColorBlendFactor >= VK_BLEND_FACTOR_CONSTANT_COLOR) &&
(attachment.dstColorBlendFactor <= VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA)) ||
((attachment.srcAlphaBlendFactor >= VK_BLEND_FACTOR_CONSTANT_COLOR) &&
(attachment.srcAlphaBlendFactor <= VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA)) ||
((attachment.srcColorBlendFactor >= VK_BLEND_FACTOR_CONSTANT_COLOR) &&
(attachment.srcColorBlendFactor <= VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA))) {
result = true;
break;
}
}
}
return result;
}
// static
bool FragmentOutputState::GetDualSourceBlending(const safe_VkPipelineColorBlendStateCreateInfo *color_blend_state) {
if (!color_blend_state) {
return false;
}
const std::array<VkBlendFactor, 4> dual_modes = {
VK_BLEND_FACTOR_SRC1_COLOR,
VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR,
VK_BLEND_FACTOR_SRC1_ALPHA,
VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA,
};
for (uint32_t i = 0; i < color_blend_state->attachmentCount; ++i) {
const auto &attachment = color_blend_state->pAttachments[i];
if (attachment.blendEnable) {
if (std::find(dual_modes.begin(), dual_modes.end(), attachment.srcColorBlendFactor) != dual_modes.end() ||
std::find(dual_modes.begin(), dual_modes.end(), attachment.dstColorBlendFactor) != dual_modes.end() ||
std::find(dual_modes.begin(), dual_modes.end(), attachment.srcAlphaBlendFactor) != dual_modes.end() ||
std::find(dual_modes.begin(), dual_modes.end(), attachment.dstAlphaBlendFactor) != dual_modes.end()) {
return true;
}
}
}
return false;
}