Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Sync2: Bug with VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT_KHR #441

Closed
danginsburg opened this issue Nov 8, 2024 · 0 comments · Fixed by #442
Closed

Sync2: Bug with VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT_KHR #441

danginsburg opened this issue Nov 8, 2024 · 0 comments · 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; 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant