hakolao / egui_winit_vulkano

Egui gui integration with winit and vulkano
Apache License 2.0
79 stars 40 forks source link

Re-assign the subpass after creation #32

Closed Mercadud closed 1 year ago

Mercadud commented 1 year ago

I might be getting vulkano and this library wrong but, I want to switch between render passes, but to make any of those changes requires me to reassign the subpass to the Gui struct, Is there a way to do it?

hakolao commented 1 year ago

I am not quite sure what you are asking. Wanna give me more information? ;)

You can use this library either as its own render pass (meaning this library just renders over after anything you render) or then as a subpass (belonging to your own render pass). Both of these ways can be found in the examples.

Mercadud commented 1 year ago

I must be getting vulkan wrong then at the moment, I'll do more research first before reopening the issue.