1
0

MainWindow.axaml 519 B

12345678910111213
  1. <Window xmlns="https://github.com/avaloniaui"
  2. xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
  3. xmlns:gpuInterop="clr-namespace:GpuInterop"
  4. xmlns:d3DDemo="clr-namespace:GpuInterop.D3DDemo"
  5. xmlns:vulkanDemo="clr-namespace:GpuInterop.VulkanDemo"
  6. x:Class="GpuInterop.MainWindow">
  7. <gpuInterop:GpuDemo>
  8. <gpuInterop:GpuDemo.Demo>
  9. <!--<d3DDemo:D3D11DemoControl/>-->
  10. <vulkanDemo:VulkanDemoControl/>
  11. </gpuInterop:GpuDemo.Demo>
  12. </gpuInterop:GpuDemo>
  13. </Window>