Skip to content
Snippets Groups Projects
Commit 9f2a390b authored by Alexander Gauggel's avatar Alexander Gauggel
Browse files

[#87] Fix mesh shader data vertex order

parent 03b69290
No related branches found
No related tags found
1 merge request!74Resolve "Mesh Shader Implementation"
Pipeline #26380 failed
...@@ -63,7 +63,7 @@ void main() { ...@@ -63,7 +63,7 @@ void main() {
gl_MeshVerticesNV[workIndex].gl_Position = mvp * vec4(vertex.position, 1); gl_MeshVerticesNV[workIndex].gl_Position = mvp * vec4(vertex.position, 1);
passNormal[workIndex] = vertex.normal; passNormal[workIndex] = vertex.normal;
// passTaskIndex[workIndex] = IN.meshletIndex; passTaskIndex[workIndex] = IN.meshletIndex;
} }
// set local indices // set local indices
......
...@@ -80,7 +80,8 @@ MeshShaderModelData createMeshShaderModelData( ...@@ -80,7 +80,8 @@ MeshShaderModelData createMeshShaderModelData(
meshlet.indexOffset = data.localIndices.size(); meshlet.indexOffset = data.localIndices.size();
meshlet.vertexOffset = data.vertices.size(); meshlet.vertexOffset = data.vertices.size();
std::map<uint32_t, uint32_t> globalToLocalIndexMap; std::map<uint32_t, uint32_t> globalToLocalIndexMap;
std::vector<uint32_t> globalIndicesOrdered;
while (true) { while (true) {
...@@ -119,6 +120,7 @@ MeshShaderModelData createMeshShaderModelData( ...@@ -119,6 +120,7 @@ MeshShaderModelData createMeshShaderModelData(
else { else {
localIndex = globalToLocalIndexMap.size(); localIndex = globalToLocalIndexMap.size();
globalToLocalIndexMap[globalIndex] = localIndex; globalToLocalIndexMap[globalIndex] = localIndex;
globalIndicesOrdered.push_back(globalIndex);
} }
data.localIndices.push_back(localIndex); data.localIndices.push_back(localIndex);
...@@ -129,10 +131,7 @@ MeshShaderModelData createMeshShaderModelData( ...@@ -129,10 +131,7 @@ MeshShaderModelData createMeshShaderModelData(
meshlet.vertexCount += vertexCountToAdd; meshlet.vertexCount += vertexCountToAdd;
} }
for (const auto& iterator : globalToLocalIndexMap) { for (const uint32_t globalIndex : globalIndicesOrdered) {
const uint32_t globalIndex = iterator.first;
const uint32_t localIndex = iterator.second;
const Vertex v = inVertices[globalIndex]; const Vertex v = inVertices[globalIndex];
data.vertices.push_back(v); data.vertices.push_back(v);
} }
...@@ -405,7 +404,7 @@ int main(int argc, const char** argv) { ...@@ -405,7 +404,7 @@ int main(int argc, const char** argv) {
renderPass, renderPass,
meshShaderPipeline, meshShaderPipeline,
pushConstantData, pushConstantData,
{ vkcv::MeshShaderDrawcall({descriptorUsage}, meshShaderModelData.meshlets.size()) }, { vkcv::MeshShaderDrawcall({descriptorUsage}, meshShaderModelData.meshlets.size())},
{ renderTargets }); { renderTargets });
} }
else { else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment