Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vulkan2021
VkCV Framework
Commits
9f2a390b
Commit
9f2a390b
authored
3 years ago
by
Alexander Gauggel
Browse files
Options
Downloads
Patches
Plain Diff
[
#87
] Fix mesh shader data vertex order
parent
03b69290
No related branches found
No related tags found
1 merge request
!74
Resolve "Mesh Shader Implementation"
Pipeline
#26380
failed
3 years ago
Stage: build
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
projects/mesh_shader/resources/shaders/shader.mesh
+1
-1
1 addition, 1 deletion
projects/mesh_shader/resources/shaders/shader.mesh
projects/mesh_shader/src/main.cpp
+5
-6
5 additions, 6 deletions
projects/mesh_shader/src/main.cpp
with
6 additions
and
7 deletions
projects/mesh_shader/resources/shaders/shader.mesh
+
1
−
1
View file @
9f2a390b
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
projects/mesh_shader/src/main.cpp
+
5
−
6
View file @
9f2a390b
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment