Mercurial > games > semicongine
annotate src/semicongine.nim @ 166:5b0e27e448cb
add: support for showing/hiding cursur, X11 fullscreen (win32 still missing)
author | Sam <sam@basx.dev> |
---|---|
date | Sun, 30 Apr 2023 01:02:33 +0700 |
parents | 9901ec3831d1 |
children | 4d4f7a2eb6ca |
rev | line source |
---|---|
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
1 import semicongine/color |
116 | 2 import semicongine/config |
127 | 3 import semicongine/engine |
116 | 4 import semicongine/entity |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
5 import semicongine/events |
116 | 6 import semicongine/gpu_data |
7 import semicongine/math | |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
8 import semicongine/mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
9 import semicongine/renderer |
116 | 10 import semicongine/platform/window |
11 import semicongine/vulkan | |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
12 |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
13 export color |
116 | 14 export config |
127 | 15 export engine |
116 | 16 export entity |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
17 export events |
116 | 18 export gpu_data |
19 export math | |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
20 export mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
21 export renderer |
60
c57285d292b6
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
56
diff
changeset
|
22 export window |
116 | 23 export vulkan |