Skip to content
Snippets Groups Projects
Verified Commit 36aa519f authored by Tobias Frisch's avatar Tobias Frisch
Browse files

Adjusted changes of graphics pipeline config in wobble_bobble

parent 88e3072c
No related branches found
No related tags found
1 merge request!103Added project wobble_bobble and refactored some parts of the framework
......@@ -123,7 +123,7 @@ int main(int argc, const char **argv) {
1024
);
std::vector<Particle> particles_vec (1024);
std::vector<Particle> particles_vec (particles.getCount());
distributeParticles(
particles_vec.data(),
......@@ -309,7 +309,7 @@ int main(int argc, const char **argv) {
gfxPipelineConfig.m_Height = windowHeight;
gfxPipelineConfig.m_PassHandle = gfxPass;
gfxPipelineConfig.m_VertexLayout = vertexLayout;
gfxPipelineConfig.m_DescriptorLayouts = { core.getDescriptorSetLayout(gfxSetLayout).vulkanHandle };
gfxPipelineConfig.m_DescriptorLayouts = { gfxSetLayout };
gfxPipelineConfig.m_UseDynamicViewport = true;
gfxPipelineConfig.m_blendMode = vkcv::BlendMode::Additive;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment