annotate tests/test_vulkan_wrapper.nim @ 127:5871acc2977e

did: big refactoring
author Sam <sam@basx.dev>
date Wed, 12 Apr 2023 01:20:53 +0700
parents 81a8e62215db
children 9901ec3831d1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
1 import std/options
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
2
117
40ff2453855e did: small changes from refactoring
Sam <sam@basx.dev>
parents: 115
diff changeset
3 import semicongine
99
4deffc94484a add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents: 98
diff changeset
4
104
9eeb9a44d158 did: some refactoring
Sam <sam@basx.dev>
parents: 103
diff changeset
5 proc diagnostics(instance: Instance) =
94
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
6 # diagnostic output
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
7 # print basic driver infos
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
8 echo "Layers"
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
9 for layer in getLayers():
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
10 echo " " & layer
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
11 echo "Instance extensions"
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
12 for extension in getInstanceExtensions():
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
13 echo " " & extension
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
14
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
15 echo "Devices"
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
16 for device in instance.getPhysicalDevices():
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
17 echo " " & $device
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
18 echo " Rating: " & $device.rateGraphics()
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
19 echo " Extensions"
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
20 for extension in device.getExtensions():
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
21 echo " " & $extension
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
22 echo " Properties"
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
23 echo " " & $device.getProperties()
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
24 echo " Features"
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
25 echo " " & $device.getFeatures()
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
26 echo " Queue families"
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
27 for queueFamily in device.getQueueFamilies():
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
28 echo " " & $queueFamily
94
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
29 echo " Surface present modes"
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
30 for mode in device.getSurfacePresentModes():
94
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
31 echo " " & $mode
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
32 echo " Surface formats"
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
33 for format in device.getSurfaceFormats():
94
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
34 echo " " & $format
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
35
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
36 proc scene_different_mesh_types(): Scene =
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
37 result = Scene(
113
7b695fb335ed did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 112
diff changeset
38 name: "main",
7b695fb335ed did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 112
diff changeset
39 root: newEntity("root",
117
40ff2453855e did: small changes from refactoring
Sam <sam@basx.dev>
parents: 115
diff changeset
40 newEntity("triangle1", newMesh(
114
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
41 positions=[newVec3f(0.0, -0.5), newVec3f(0.5, 0.5), newVec3f(-0.5, 0.5)],
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
42 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
43 )),
120
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
44 newEntity("triangle1b", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
45 positions=[newVec3f(0.0, -0.4), newVec3f(0.4, 0.4), newVec3f(-0.4, 0.5)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
46 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
47 )),
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
48 newEntity("triangle2a", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
49 positions=[newVec3f(0.0, 0.5), newVec3f(0.5, -0.5), newVec3f(-0.5, -0.5)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
50 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
51 indices=[[0'u16, 2'u16, 1'u16]]
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
52 )),
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
53 newEntity("triangle2b", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
54 positions=[newVec3f(0.0, 0.4), newVec3f(0.4, -0.4), newVec3f(-0.4, -0.4)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
55 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
56 indices=[[0'u16, 2'u16, 1'u16]]
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
57 )),
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
58 newEntity("triangle3a", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
59 positions=[newVec3f(0.4, 0.5), newVec3f(0.9, -0.3), newVec3f(0.0, -0.3)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
60 colors=[newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
61 indices=[[0'u32, 2'u32, 1'u32]],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
62 autoResize=false
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
63 )),
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
64 newEntity("triangle3b", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
65 positions=[newVec3f(0.4, 0.5), newVec3f(0.9, -0.3), newVec3f(0.0, -0.3)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
66 colors=[newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
67 indices=[[0'u32, 2'u32, 1'u32]],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
68 autoResize=false
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
69 )),
113
7b695fb335ed did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 112
diff changeset
70 )
7b695fb335ed did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 112
diff changeset
71 )
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
72
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
73 proc scene_simple(): Scene =
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
74 var mymesh1 = newMesh(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
75 positions=[newVec3f(0.0, -0.3), newVec3f(0.3, 0.3), newVec3f(-0.3, 0.3)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
76 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
77 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
78 var mymesh2 = newMesh(
123
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
79 positions=[newVec3f(0.0, -0.5), newVec3f(0.5, 0.5), newVec3f(-0.5, 0.5)],
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
80 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
81 )
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
82 var mymesh3 = newMesh(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
83 positions=[newVec3f(0.0, -0.6), newVec3f(0.6, 0.6), newVec3f(-0.6, 0.6)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
84 colors=[newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
85 indices=[[0'u32, 1'u32, 2'u32]],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
86 autoResize=false
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
87 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
88 var mymesh4 = newMesh(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
89 positions=[newVec3f(0.0, -0.8), newVec3f(0.8, 0.8), newVec3f(-0.8, 0.8)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
90 colors=[newVec3f(0.0, 0.0, 1.0), newVec3f(0.0, 0.0, 1.0), newVec3f(0.0, 0.0, 1.0)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
91 indices=[[0'u16, 1'u16, 2'u16]],
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
92 instanceCount=2
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
93 )
126
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
94 mymesh1.setInstanceData("translate", @[newVec3f(0.3, 0.0)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
95 mymesh2.setInstanceData("translate", @[newVec3f(0.0, 0.3)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
96 mymesh3.setInstanceData("translate", @[newVec3f(-0.3, 0.0)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
97 mymesh4.setInstanceData("translate", @[newVec3f(0.0, -0.3), newVec3f(0.0, 0.5)])
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
98 result = Scene(
123
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
99 name: "main",
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
100 root: newEntity("root", newEntity("triangle", mymesh4, mymesh3, mymesh2, mymesh1))
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
101 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
102
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
103 proc scene_primitives(): Scene =
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
104 var r = rect(color="ff0000")
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
105 var t = tri(color="0000ff")
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
106 var c = circle(color="00ff00")
126
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
107 setInstanceData[Vec3f](r, "translate", @[newVec3f(0.5, -0.3)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
108 setInstanceData[Vec3f](t, "translate", @[newVec3f(0.3, 0.3)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
109 setInstanceData[Vec3f](c, "translate", @[newVec3f(-0.3, 0.1)])
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
110 result = Scene(
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
111 name: "main",
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
112 root: newEntity("root", t, r, c)
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
113 )
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
114
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
115 when isMainModule:
127
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
116 var engine = initEngine("Test")
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
117
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
118 # INIT RENDERER:
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
119 const
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
120 vertexInput = @[
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
121 attr[Vec3f]("position", memoryLocation=VRAM),
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
122 attr[Vec3f]("color", memoryLocation=VRAM),
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
123 attr[Vec3f]("translate", perInstance=true)
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
124 ]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
125 vertexOutput = @[attr[Vec3f]("outcolor")]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
126 uniforms = @[attr[float32]("time")]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
127 fragOutput = @[attr[Vec4f]("color")]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
128 vertexCode = compileGlslShader(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
129 stage=VK_SHADER_STAGE_VERTEX_BIT,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
130 inputs=vertexInput,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
131 uniforms=uniforms,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
132 outputs=vertexOutput,
127
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
133 main="""gl_Position = vec4(position + translate, 1.0); outcolor = color;"""
123
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
134 )
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
135 fragmentCode = compileGlslShader(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
136 stage=VK_SHADER_STAGE_FRAGMENT_BIT,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
137 inputs=vertexOutput,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
138 uniforms=uniforms,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
139 outputs=fragOutput,
127
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
140 main="color = vec4(outcolor, 1);"
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
141 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
142 var
127
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
143 vertexshader = engine.gpuDevice.createShaderModule(vertexCode)
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
144 fragmentshader = engine.gpuDevice.createShaderModule(fragmentCode)
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
145 surfaceFormat = engine.gpuDevice.physicalDevice.getSurfaceFormats().filterSurfaceFormat()
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
146 renderPass = engine.gpuDevice.simpleForwardRenderPass(surfaceFormat.format, vertexshader, fragmentshader, 2)
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
147 (swapchain, res) = engine.gpuDevice.createSwapchain(renderPass, surfaceFormat, engine.gpuDevice.firstGraphicsQueue().get().family, 2)
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
148 if res != VK_SUCCESS:
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
149 raise newException(Exception, "Unable to create swapchain")
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
150
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
151 # INIT SCENE
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
152
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
153 # var thescene = scene_simple()
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
154 # var thescene = scene_different_mesh_types()
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
155 var thescene = scene_primitives()
127
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
156 var time = initShaderGlobal("time", 0.0'f32)
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
157 thescene.root.components.add time
127
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
158 thescene.setupDrawableBuffers(engine.gpuDevice, vertexInput)
109
8d24727c9795 did: refactor rendering/scene concept
Sam <sam@basx.dev>
parents: 108
diff changeset
159
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
160 # MAINLOOP
111
6fd10b7e2d6a did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 109
diff changeset
161 echo "Setup successfull, start rendering"
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
162 for i in 0 ..< 10000:
122
506090173619 did: implement uniforms, some refactoring
Sam <sam@basx.dev>
parents: 121
diff changeset
163 setValue[float32](time.value, get[float32](time.value) + 0.0005)
111
6fd10b7e2d6a did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 109
diff changeset
164 discard swapchain.drawScene(thescene)
108
70f92081d2c1 did: reorganize code
Sam <sam@basx.dev>
parents: 107
diff changeset
165 echo "Rendered ", swapchain.framesRendered, " frames"
114
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
166
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
167 # cleanup
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
168 echo "Start cleanup"
127
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
169 checkVkResult engine.gpuDevice.vk.vkDeviceWaitIdle()
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
170
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
171 # destroy scene
114
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
172 thescene.destroy()
108
70f92081d2c1 did: reorganize code
Sam <sam@basx.dev>
parents: 107
diff changeset
173
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
174 # destroy renderer
103
1e2027dfc642 add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents: 102
diff changeset
175 vertexshader.destroy()
1e2027dfc642 add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents: 102
diff changeset
176 fragmentshader.destroy()
111
6fd10b7e2d6a did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 109
diff changeset
177 renderPass.destroy()
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
178 swapchain.destroy()
114
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
179
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
180 # destroy engine
127
5871acc2977e did: big refactoring
Sam <sam@basx.dev>
parents: 126
diff changeset
181 engine.destroy()