Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Sync2: Bug with VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT_KHR #441

Open
danginsburg opened this issue Nov 8, 2024 · 0 comments · May be fixed by #442
Open

Sync2: Bug with VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT_KHR #441

danginsburg opened this issue Nov 8, 2024 · 0 comments · May be fixed by #442

Comments

@danginsburg
Copy link

danginsburg commented Nov 8, 2024

There is a typo on this line that is bug:

result_stage_mask = VK_PIPELINE_STAGE_VERTEX_SHADER_BIT;

It ends up losing the preceding values set to result_stage_mask. That should be:

result_stage_mask |= VK_PIPELINE_STAGE_VERTEX_SHADER_BIT; 
@ziga-lunarg ziga-lunarg linked a pull request Nov 8, 2024 that will close this issue
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant