Mercurial > games > semicongine
annotate tests/test_vulkan_wrapper.nim @ 567:05ac2455ff60
add: render main loop structure
| author | Sam <sam@basx.dev> |
|---|---|
| date | Sun, 26 Mar 2023 01:56:19 +0700 |
| parents | cc7ba46fe3c4 |
| children | 2d0351a68a4e |
| rev | line source |
|---|---|
| 557 | 1 import std/options |
| 2 | |
| 554 | 3 import semicongine/vulkan |
| 555 | 4 import semicongine/platform/window |
| 559 | 5 import semicongine/math |
| 554 | 6 |
|
560
8de8a2102071
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
559
diff
changeset
|
7 type |
|
8de8a2102071
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
559
diff
changeset
|
8 Vertex = object |
|
8de8a2102071
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
559
diff
changeset
|
9 pos: Vec3 |
|
564
20837928dc63
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
563
diff
changeset
|
10 FragmentInput = object |
|
20837928dc63
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
563
diff
changeset
|
11 fragpos: Vec3 |
| 563 | 12 Uniforms = object |
| 13 time: float32 | |
|
564
20837928dc63
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
563
diff
changeset
|
14 Pixel = object |
|
20837928dc63
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
563
diff
changeset
|
15 color: Vec4 |
|
560
8de8a2102071
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
559
diff
changeset
|
16 |
| 565 | 17 proc diagnostics(instance: Instance) = |
| 555 | 18 # diagnostic output |
| 554 | 19 echo "Devices" |
| 20 for device in instance.getPhysicalDevices(): | |
| 21 echo " " & $device | |
| 557 | 22 echo " Rating: " & $device.rateGraphics() |
| 554 | 23 echo " Extensions" |
| 24 for extension in device.getExtensions(): | |
| 25 echo " " & $extension | |
| 557 | 26 echo " Properties" |
| 27 echo " " & $device.getProperties() | |
| 28 echo " Features" | |
| 29 echo " " & $device.getFeatures() | |
| 554 | 30 echo " Queue families" |
| 31 for queueFamily in device.getQueueFamilies(): | |
| 32 echo " " & $queueFamily | |
| 555 | 33 echo " Surface present modes" |
| 557 | 34 for mode in device.getSurfacePresentModes(): |
| 555 | 35 echo " " & $mode |
| 36 echo " Surface formats" | |
| 557 | 37 for format in device.getSurfaceFormats(): |
| 555 | 38 echo " " & $format |
| 554 | 39 |
| 565 | 40 when isMainModule: |
| 41 # print basic driver infos | |
| 42 echo "Layers" | |
| 43 for layer in getLayers(): | |
| 44 echo " " & layer | |
| 45 echo "Instance extensions" | |
| 46 for extension in getInstanceExtensions(): | |
| 47 echo " " & extension | |
| 48 | |
| 49 # create instance | |
| 50 var thewindow = createWindow("Test") | |
| 51 var instance = thewindow.createInstance( | |
| 52 vulkanVersion=VK_MAKE_API_VERSION(0, 1, 3, 0), | |
| 53 instanceExtensions= @["VK_EXT_debug_utils"], | |
| 54 layers= @["VK_LAYER_KHRONOS_validation"] | |
| 55 ) | |
| 56 var debugger = instance.createDebugMessenger() | |
| 57 | |
| 554 | 58 # create devices |
| 557 | 59 let selectedPhysicalDevice = instance.getPhysicalDevices().filterBestGraphics() |
| 60 var device = instance.createDevice( | |
| 61 selectedPhysicalDevice, | |
| 62 @[], | |
| 63 @[], | |
| 64 selectedPhysicalDevice.filterForGraphicsPresentationQueues() | |
| 65 ) | |
| 66 | |
| 559 | 67 # setup render pipeline |
|
566
cc7ba46fe3c4
add: descriptors, better swapchain implementation
Sam <sam@basx.dev>
parents:
565
diff
changeset
|
68 var surfaceFormat = device.physicalDevice.getSurfaceFormats().filterSurfaceFormat() |
|
cc7ba46fe3c4
add: descriptors, better swapchain implementation
Sam <sam@basx.dev>
parents:
565
diff
changeset
|
69 var renderpass = device.simpleForwardRenderPass(surfaceFormat.format) |
| 567 | 70 var (swapchain, res) = device.createSwapchain(renderpass, surfaceFormat, device.firstGraphicsQueue().get().family) |
| 557 | 71 if res != VK_SUCCESS: |
| 72 raise newException(Exception, "Unable to create swapchain") | |
| 559 | 73 |
| 74 # todo: could be create inside "device", but it would be nice to have nim v2 with support for circular dependencies first | |
| 565 | 75 const vertexBinary = shaderCode[Vertex, Uniforms, FragmentInput](stage=VK_SHADER_STAGE_VERTEX_BIT, version=450, entrypoint="main", "fragpos = pos;") |
| 76 const fragmentBinary = shaderCode[FragmentInput, void, Pixel](stage=VK_SHADER_STAGE_FRAGMENT_BIT, version=450, entrypoint="main", "color = vec4(1, 1, 1, 0);") | |
| 567 | 77 var |
| 78 vertexshader = createShader[Vertex, Uniforms, FragmentInput](device, VK_SHADER_STAGE_VERTEX_BIT, "main", vertexBinary) | |
| 79 fragmentshader = createShader[FragmentInput, void, Pixel](device, VK_SHADER_STAGE_FRAGMENT_BIT, "main", fragmentBinary) | |
| 80 pipeline = renderpass.createPipeline(vertexshader, fragmentshader) | |
| 81 descriptorPool = device.createDescriptorSetPool(@[(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 1'u32)]) | |
| 82 descriptorSet = descriptorPool.allocateDescriptorSet(pipeline.descriptorSetLayout, 1) | |
| 557 | 83 |
| 84 echo "All successfull" | |
| 567 | 85 echo swapchain.drawNextFrame(pipeline) |
| 557 | 86 echo "Start cleanup" |
| 554 | 87 |
|
560
8de8a2102071
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
559
diff
changeset
|
88 # cleanup |
|
566
cc7ba46fe3c4
add: descriptors, better swapchain implementation
Sam <sam@basx.dev>
parents:
565
diff
changeset
|
89 checkVkResult device.vk.vkDeviceWaitIdle() |
|
cc7ba46fe3c4
add: descriptors, better swapchain implementation
Sam <sam@basx.dev>
parents:
565
diff
changeset
|
90 descriptorPool.destroy() |
|
564
20837928dc63
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
563
diff
changeset
|
91 vertexshader.destroy() |
|
20837928dc63
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
563
diff
changeset
|
92 fragmentshader.destroy() |
| 565 | 93 pipeline.destroy() |
| 559 | 94 renderpass.destroy() |
| 557 | 95 swapchain.destroy() |
| 96 device.destroy() | |
| 554 | 97 |
| 98 debugger.destroy() | |
| 99 instance.destroy() |
