Exemple #1
0
 private void CreateImGui()
 {
     imGuiRenderer = new ImGuiRenderer(graphicsDevice,
                                       swapchain.Framebuffer.OutputDescription,
                                       window.Width,
                                       window.Height,
                                       ColorSpaceHandling.Linear);
     uiController = new ImGuiController(this);
     uiController.Initialize();
 }
Exemple #2
0
 public StartMenu(ImGuiController controller)
 {
     Controller = controller;
 }
Exemple #3
0
 public ShaderEditor(ImGuiController controller)
 {
     Controller = controller;
 }