Mercurial > games > semicongine
annotate tests/test_vulkan_wrapper.nim @ 574:bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
| author | Sam <sam@basx.dev> |
|---|---|
| date | Sun, 02 Apr 2023 01:22:09 +0700 |
| parents | f31a9821ae1c |
| children | 056e08dfad10 |
| 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 |
| 570 | 6 import semicongine/entity |
| 7 import semicongine/scene | |
|
572
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
8 import semicongine/gpu_data |
|
573
f31a9821ae1c
did: real implementation of buffer and memory, getting closer to collect shit for drawing per pipeline
Sam <sam@basx.dev>
parents:
572
diff
changeset
|
9 import semicongine/mesh |
|
560
8de8a2102071
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
559
diff
changeset
|
10 |
| 565 | 11 proc diagnostics(instance: Instance) = |
| 555 | 12 # diagnostic output |
| 554 | 13 echo "Devices" |
| 14 for device in instance.getPhysicalDevices(): | |
| 15 echo " " & $device | |
| 557 | 16 echo " Rating: " & $device.rateGraphics() |
| 554 | 17 echo " Extensions" |
| 18 for extension in device.getExtensions(): | |
| 19 echo " " & $extension | |
| 557 | 20 echo " Properties" |
| 21 echo " " & $device.getProperties() | |
| 22 echo " Features" | |
| 23 echo " " & $device.getFeatures() | |
| 554 | 24 echo " Queue families" |
| 25 for queueFamily in device.getQueueFamilies(): | |
| 26 echo " " & $queueFamily | |
| 555 | 27 echo " Surface present modes" |
| 557 | 28 for mode in device.getSurfacePresentModes(): |
| 555 | 29 echo " " & $mode |
| 30 echo " Surface formats" | |
| 557 | 31 for format in device.getSurfaceFormats(): |
| 555 | 32 echo " " & $format |
| 554 | 33 |
| 565 | 34 when isMainModule: |
| 35 # print basic driver infos | |
| 36 echo "Layers" | |
| 37 for layer in getLayers(): | |
| 38 echo " " & layer | |
| 39 echo "Instance extensions" | |
| 40 for extension in getInstanceExtensions(): | |
| 41 echo " " & extension | |
| 42 | |
| 43 # create instance | |
| 44 var thewindow = createWindow("Test") | |
| 45 var instance = thewindow.createInstance( | |
| 46 vulkanVersion=VK_MAKE_API_VERSION(0, 1, 3, 0), | |
| 47 instanceExtensions= @["VK_EXT_debug_utils"], | |
| 48 layers= @["VK_LAYER_KHRONOS_validation"] | |
| 49 ) | |
| 50 var debugger = instance.createDebugMessenger() | |
| 51 | |
| 554 | 52 # create devices |
| 557 | 53 let selectedPhysicalDevice = instance.getPhysicalDevices().filterBestGraphics() |
| 54 var device = instance.createDevice( | |
| 55 selectedPhysicalDevice, | |
| 56 @[], | |
| 57 @[], | |
| 58 selectedPhysicalDevice.filterForGraphicsPresentationQueues() | |
| 59 ) | |
| 60 | |
|
574
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
61 const inputs = AttributeGroup(attributes: @[attr(name="position", thetype=Float32, components=3)]) |
|
572
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
62 const uniforms = AttributeGroup() |
|
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
63 const outputs = AttributeGroup(attributes: @[attr(name="fragpos", thetype=Float32, components=3)]) |
|
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
64 const fragOutput = AttributeGroup(attributes: @[attr(name="color", thetype=Float32, components=4)]) |
|
574
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
65 const vertexBinary = shaderCode(inputs=inputs, uniforms=uniforms, outputs=outputs, stage=VK_SHADER_STAGE_VERTEX_BIT, version=450, entrypoint="main", "fragpos = position;") |
|
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
66 const fragmentBinary = shaderCode(inputs=outputs, uniforms=uniforms, outputs=fragOutput, stage=VK_SHADER_STAGE_FRAGMENT_BIT, version=450, entrypoint="main", "color = vec4(1, 1, 1, 1);") |
| 567 | 67 var |
|
572
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
68 vertexshader = device.createShader(inputs, uniforms, outputs, VK_SHADER_STAGE_VERTEX_BIT, "main", vertexBinary) |
|
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
69 fragmentshader = device.createShader(inputs, uniforms, outputs, VK_SHADER_STAGE_FRAGMENT_BIT, "main", fragmentBinary) |
| 569 | 70 surfaceFormat = device.physicalDevice.getSurfaceFormats().filterSurfaceFormat() |
|
572
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
71 renderPass = device.simpleForwardRenderPass(surfaceFormat.format, vertexshader, fragmentshader, 2) |
|
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
72 var (swapchain, res) = device.createSwapchain(renderPass, surfaceFormat, device.firstGraphicsQueue().get().family, 2) |
| 569 | 73 if res != VK_SUCCESS: |
| 74 raise newException(Exception, "Unable to create swapchain") | |
| 557 | 75 |
|
574
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
76 var thescene = Scene( |
|
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
77 name: "main", |
|
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
78 root: newEntity("root", |
|
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
79 newEntity("triangle1", newMesh([newVec3f(-0.5, -0.5), newVec3f(0.5, 0.5), newVec3f(0.5, -0.5)])), |
|
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
80 newEntity("triangle2", newMesh([newVec3f(-0.5, -0.5), newVec3f(0.5, -0.5), newVec3f(0.5, 0.5)])), |
|
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
81 ) |
|
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
82 ) |
|
572
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
83 thescene.setupDrawables(renderPass) |
| 570 | 84 |
|
572
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
85 echo "Setup successfull, start rendering" |
|
573
f31a9821ae1c
did: real implementation of buffer and memory, getting closer to collect shit for drawing per pipeline
Sam <sam@basx.dev>
parents:
572
diff
changeset
|
86 for i in 0 ..< 1: |
|
572
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
87 discard swapchain.drawScene(thescene) |
| 569 | 88 echo "Rendered ", swapchain.framesRendered, " frames" |
| 557 | 89 echo "Start cleanup" |
| 554 | 90 |
| 569 | 91 |
|
560
8de8a2102071
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
559
diff
changeset
|
92 # cleanup |
|
566
cc7ba46fe3c4
add: descriptors, better swapchain implementation
Sam <sam@basx.dev>
parents:
565
diff
changeset
|
93 checkVkResult device.vk.vkDeviceWaitIdle() |
|
574
bbeec60e25ca
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
573
diff
changeset
|
94 thescene.destroy() |
|
564
20837928dc63
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
563
diff
changeset
|
95 vertexshader.destroy() |
|
20837928dc63
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
563
diff
changeset
|
96 fragmentshader.destroy() |
|
572
9f1de117aaca
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
570
diff
changeset
|
97 renderPass.destroy() |
| 557 | 98 swapchain.destroy() |
| 99 device.destroy() | |
| 554 | 100 |
| 101 debugger.destroy() | |
| 102 instance.destroy() |
