annotate examples/E01_hello_triangle.nim @ 957:d27c8dbfef1c

fix: always forget to reset this one when debugging :)
author sam <sam@basx.dev>
date Tue, 02 Apr 2024 00:37:42 +0700
parents cca6f1a675db
children d6c27f0ed3e4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
796
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
1 import std/tables
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
2
950
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
3 import ../semicongine
522
f2c97bdbb0b3 did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff changeset
4
796
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
5 # shader setup
594
512d33d314c4 add: correct swapchain destruction, update 1st example to be working
Sam <sam@basx.dev>
parents: 535
diff changeset
6 const
796
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
7 shaderConfiguration = createShaderConfiguration(
950
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
8 inputs = [
796
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
9 attr[Vec3f]("position"),
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
10 attr[Vec4f]("color"),
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
11 ],
950
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
12 intermediates = [attr[Vec4f]("outcolor")],
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
13 outputs = [attr[Vec4f]("color")],
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
14 vertexCode = "gl_Position = vec4(position, 1.0); outcolor = color;",
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
15 fragmentCode = "color = outcolor;",
594
512d33d314c4 add: correct swapchain destruction, update 1st example to be working
Sam <sam@basx.dev>
parents: 535
diff changeset
16 )
522
f2c97bdbb0b3 did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff changeset
17
796
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
18 # scene setup
594
512d33d314c4 add: correct swapchain destruction, update 1st example to be working
Sam <sam@basx.dev>
parents: 535
diff changeset
19 var
950
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
20 scene = Scene(name: "scene",
796
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
21 meshes: @[newMesh(
950
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
22 positions = [newVec3f(-0.5, 0.5), newVec3f(0, -0.5), newVec3f(0.5, 0.5)],
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
23 colors = [newVec4f(1, 0, 0, 1), newVec4f(0, 1, 0, 1), newVec4f(0, 0, 1, 1)],
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
24 material = VERTEX_COLORED_MATERIAL.initMaterialData()
796
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
25 )]
8084252b807a fix: first example
Sam <sam@basx.dev>
parents: 777
diff changeset
26 )
950
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
27 myengine = initEngine("Hello triangle", showFps = true)
594
512d33d314c4 add: correct swapchain destruction, update 1st example to be working
Sam <sam@basx.dev>
parents: 535
diff changeset
28
957
d27c8dbfef1c fix: always forget to reset this one when debugging :)
sam <sam@basx.dev>
parents: 956
diff changeset
29 myengine.initRenderer({VERTEX_COLORED_MATERIAL: shaderConfiguration}, inFlightFrames = 2)
950
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
30 myengine.loadScene(scene)
594
512d33d314c4 add: correct swapchain destruction, update 1st example to be working
Sam <sam@basx.dev>
parents: 535
diff changeset
31
606
f41c1b78cf5b add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents: 597
diff changeset
32 while myengine.updateInputs() == Running and not myengine.keyWasPressed(Escape):
950
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
33 transform[Vec3f](scene.meshes[0][], "position", scale(1.001, 1.001))
fe48b091e83f did: tons of small improvments, on the way to make GPU sync (more) correct I guess
sam <sam@basx.dev>
parents: 920
diff changeset
34 myengine.renderScene(scene)
594
512d33d314c4 add: correct swapchain destruction, update 1st example to be working
Sam <sam@basx.dev>
parents: 535
diff changeset
35
512d33d314c4 add: correct swapchain destruction, update 1st example to be working
Sam <sam@basx.dev>
parents: 535
diff changeset
36 myengine.destroy()