Replies: 1 comment
-
There isn't much we suggest with such snippet of code, all we can do is suggest further investigation at your end. First thing to do is to enable the Vulkan debug layer to see if there are any errors reported. Also try to see if you can get any of the vsgExamples programs to exhibit this issue, that gives others a chance of reproducing the problem, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
auto commandGraph = vsg::createCommandGraphForView(window, camera, vsg_scene);
auto secondary_view = vsg::View::create(camera, vsg_scene);
auto secondary_RenderGraph = vsg::RenderGraph::create(window, secondary_view);
secondary_RenderGraph->clearValues[0].color = {{0.2f, 0.2f, 0.2f, 1.0f}};
commandGraph->addChild(secondary_RenderGraph);
Beta Was this translation helpful? Give feedback.
All reactions