Mercurial > games > semicongine
annotate tests/test_vulkan_wrapper.nim @ 113:7b695fb335ed
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 | 0c5a74885796 |
children | 056e08dfad10 |
rev | line source |
---|---|
96 | 1 import std/options |
2 | |
93 | 3 import semicongine/vulkan |
94 | 4 import semicongine/platform/window |
98 | 5 import semicongine/math |
109 | 6 import semicongine/entity |
7 import semicongine/scene | |
111
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
8 import semicongine/gpu_data |
112
0c5a74885796
did: real implementation of buffer and memory, getting closer to collect shit for drawing per pipeline
Sam <sam@basx.dev>
parents:
111
diff
changeset
|
9 import semicongine/mesh |
99
4deffc94484a
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
98
diff
changeset
|
10 |
104 | 11 proc diagnostics(instance: Instance) = |
94 | 12 # diagnostic output |
93 | 13 echo "Devices" |
14 for device in instance.getPhysicalDevices(): | |
15 echo " " & $device | |
96 | 16 echo " Rating: " & $device.rateGraphics() |
93 | 17 echo " Extensions" |
18 for extension in device.getExtensions(): | |
19 echo " " & $extension | |
96 | 20 echo " Properties" |
21 echo " " & $device.getProperties() | |
22 echo " Features" | |
23 echo " " & $device.getFeatures() | |
93 | 24 echo " Queue families" |
25 for queueFamily in device.getQueueFamilies(): | |
26 echo " " & $queueFamily | |
94 | 27 echo " Surface present modes" |
96 | 28 for mode in device.getSurfacePresentModes(): |
94 | 29 echo " " & $mode |
30 echo " Surface formats" | |
96 | 31 for format in device.getSurfaceFormats(): |
94 | 32 echo " " & $format |
93 | 33 |
104 | 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 | |
93 | 52 # create devices |
96 | 53 let selectedPhysicalDevice = instance.getPhysicalDevices().filterBestGraphics() |
54 var device = instance.createDevice( | |
55 selectedPhysicalDevice, | |
56 @[], | |
57 @[], | |
58 selectedPhysicalDevice.filterForGraphicsPresentationQueues() | |
59 ) | |
60 | |
113
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
61 const inputs = AttributeGroup(attributes: @[attr(name="position", thetype=Float32, components=3)]) |
111
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
62 const uniforms = AttributeGroup() |
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
63 const outputs = AttributeGroup(attributes: @[attr(name="fragpos", thetype=Float32, components=3)]) |
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
64 const fragOutput = AttributeGroup(attributes: @[attr(name="color", thetype=Float32, components=4)]) |
113
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
65 const vertexBinary = shaderCode(inputs=inputs, uniforms=uniforms, outputs=outputs, stage=VK_SHADER_STAGE_VERTEX_BIT, version=450, entrypoint="main", "fragpos = position;") |
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
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);") |
106 | 67 var |
111
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
68 vertexshader = device.createShader(inputs, uniforms, outputs, VK_SHADER_STAGE_VERTEX_BIT, "main", vertexBinary) |
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
69 fragmentshader = device.createShader(inputs, uniforms, outputs, VK_SHADER_STAGE_FRAGMENT_BIT, "main", fragmentBinary) |
108 | 70 surfaceFormat = device.physicalDevice.getSurfaceFormats().filterSurfaceFormat() |
111
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
71 renderPass = device.simpleForwardRenderPass(surfaceFormat.format, vertexshader, fragmentshader, 2) |
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
72 var (swapchain, res) = device.createSwapchain(renderPass, surfaceFormat, device.firstGraphicsQueue().get().family, 2) |
108 | 73 if res != VK_SUCCESS: |
74 raise newException(Exception, "Unable to create swapchain") | |
96 | 75 |
113
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
76 var thescene = Scene( |
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
77 name: "main", |
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
78 root: newEntity("root", |
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
79 newEntity("triangle1", newMesh([newVec3f(-0.5, -0.5), newVec3f(0.5, 0.5), newVec3f(0.5, -0.5)])), |
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
80 newEntity("triangle2", newMesh([newVec3f(-0.5, -0.5), newVec3f(0.5, -0.5), newVec3f(0.5, 0.5)])), |
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
81 ) |
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
82 ) |
111
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
83 thescene.setupDrawables(renderPass) |
109 | 84 |
111
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
85 echo "Setup successfull, start rendering" |
112
0c5a74885796
did: real implementation of buffer and memory, getting closer to collect shit for drawing per pipeline
Sam <sam@basx.dev>
parents:
111
diff
changeset
|
86 for i in 0 ..< 1: |
111
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
87 discard swapchain.drawScene(thescene) |
108 | 88 echo "Rendered ", swapchain.framesRendered, " frames" |
96 | 89 echo "Start cleanup" |
93 | 90 |
108 | 91 |
99
4deffc94484a
add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents:
98
diff
changeset
|
92 # cleanup |
105
4059aa0d689b
add: descriptors, better swapchain implementation
Sam <sam@basx.dev>
parents:
104
diff
changeset
|
93 checkVkResult device.vk.vkDeviceWaitIdle() |
113
7b695fb335ed
did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents:
112
diff
changeset
|
94 thescene.destroy() |
103
1e2027dfc642
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
102
diff
changeset
|
95 vertexshader.destroy() |
1e2027dfc642
add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents:
102
diff
changeset
|
96 fragmentshader.destroy() |
111
6fd10b7e2d6a
did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents:
109
diff
changeset
|
97 renderPass.destroy() |
96 | 98 swapchain.destroy() |
99 device.destroy() | |
93 | 100 |
101 debugger.destroy() | |
102 instance.destroy() |