Mercurial > games > semicongine
annotate semiconginev2/rendering.nim @ 1228:4e465583ea32
did: rename texture to image
author | sam <sam@basx.dev> |
---|---|
date | Thu, 18 Jul 2024 16:33:24 +0700 |
parents | c8e3037aca66 |
children | 5dcb503ef0c0 |
rev | line source |
---|---|
1192 | 1 # in this file: |
2 # - const defintions for rendering | |
3 # - custom pragma defintions for rendering | |
4 # - type defintions for rendering | |
5 # - some utils code that is used in mutiple rendering files | |
6 # - inclusion of all rendering files | |
7 | |
8 | |
9 # const definitions | |
1197 | 10 const INFLIGHTFRAMES* = 2'u32 |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
11 const BUFFER_ALIGNMENT = 64'u64 # align offsets inside buffers along this alignment |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
12 const MEMORY_BLOCK_ALLOCATION_SIZE = 100_000_000'u64 # ca. 100mb per block, seems reasonable |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
13 const BUFFER_ALLOCATION_SIZE = 9_000_000'u64 # ca. 9mb per block, seems reasonable, can put 10 buffers into one memory block |
1205
f7530247a21f
did: improve descriptor-set handling, add simple descriptor set test
sam <sam@basx.dev>
parents:
1204
diff
changeset
|
14 const MAX_DESCRIPTORSETS = 4 |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
15 |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
16 # custom pragmas to classify shader attributes |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
17 template VertexAttribute* {.pragma.} |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
18 template InstanceAttribute* {.pragma.} |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
19 template Pass* {.pragma.} |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
20 template PassFlat* {.pragma.} |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
21 template ShaderOutput* {.pragma.} |
1205
f7530247a21f
did: improve descriptor-set handling, add simple descriptor set test
sam <sam@basx.dev>
parents:
1204
diff
changeset
|
22 template DescriptorSets* {.pragma.} |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
23 |
1193 | 24 # there is a big, bad global vulkan object |
25 # believe me, this makes everything much, much easier | |
26 | |
1224
a3fa15c25026
did: cleanup, add audio, change platform-dependent structure
sam <sam@basx.dev>
parents:
1218
diff
changeset
|
27 when defined(windows): |
a3fa15c25026
did: cleanup, add audio, change platform-dependent structure
sam <sam@basx.dev>
parents:
1218
diff
changeset
|
28 include ./rendering/platform/windows |
a3fa15c25026
did: cleanup, add audio, change platform-dependent structure
sam <sam@basx.dev>
parents:
1218
diff
changeset
|
29 when defined(linux): |
a3fa15c25026
did: cleanup, add audio, change platform-dependent structure
sam <sam@basx.dev>
parents:
1218
diff
changeset
|
30 include ./rendering/platform/linux |
1193 | 31 |
32 type | |
33 VulkanGlobals* = object | |
1195
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
34 # populated through InitVulkan proc |
1193 | 35 instance*: VkInstance |
36 device*: VkDevice | |
37 physicalDevice*: VkPhysicalDevice | |
38 surface: VkSurfaceKHR | |
39 window: NativeWindow | |
40 graphicsQueueFamily*: uint32 | |
41 graphicsQueue*: VkQueue | |
1199 | 42 debugMessenger: VkDebugUtilsMessengerEXT |
1197 | 43 # unclear as of yet |
44 anisotropy*: float32 = 0 # needs to be enable during device creation | |
1203
6360c8d17ce0
did: preprations to add rendering tests
sam <sam@basx.dev>
parents:
1202
diff
changeset
|
45 Swapchain* = object |
1195
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
46 # parameters to InitSwapchain, required for swapchain recreation |
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
47 renderPass: VkRenderPass |
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
48 vSync: bool |
1204 | 49 samples*: VkSampleCountFlagBits |
1195
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
50 # populated through InitSwapchain proc |
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
51 vk: VkSwapchainKHR |
1214
04e446a7eb2b
add: multipass renderer, finish tets for now
sam <sam@basx.dev>
parents:
1212
diff
changeset
|
52 width*: uint32 |
04e446a7eb2b
add: multipass renderer, finish tets for now
sam <sam@basx.dev>
parents:
1212
diff
changeset
|
53 height*: uint32 |
1195
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
54 msaaImage: VkImage |
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
55 msaaMemory: VkDeviceMemory |
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
56 msaaImageView: VkImageView |
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
57 framebuffers: seq[VkFramebuffer] |
cfba2b7e00d0
did: most of swapchain, swap still needs to be done
sam <sam@basx.dev>
parents:
1194
diff
changeset
|
58 framebufferViews: seq[VkImageView] |
1198 | 59 currentFramebufferIndex: uint32 |
60 commandBufferPool: VkCommandPool | |
61 # frame-in-flight handling | |
62 currentFiF: range[0 .. (INFLIGHTFRAMES - 1).int] | |
1197 | 63 queueFinishedFence*: array[INFLIGHTFRAMES.int, VkFence] |
64 imageAvailableSemaphore*: array[INFLIGHTFRAMES.int, VkSemaphore] | |
65 renderFinishedSemaphore*: array[INFLIGHTFRAMES.int, VkSemaphore] | |
1198 | 66 commandBuffers: array[INFLIGHTFRAMES.int, VkCommandBuffer] |
1200
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
67 oldSwapchain: ref Swapchain |
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
68 oldSwapchainCounter: int # swaps until old swapchain will be destroyed |
1193 | 69 |
70 var vulkan*: VulkanGlobals | |
1226 | 71 var fullscreen: bool |
1193 | 72 |
1202 | 73 func currentFiF*(swapchain: Swapchain): int = swapchain.currentFiF |
74 | |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
75 type |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
76 # type aliases |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
77 SupportedGPUType = float32 | float64 | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | TVec2[int32] | TVec2[int64] | TVec3[int32] | TVec3[int64] | TVec4[int32] | TVec4[int64] | TVec2[uint32] | TVec2[uint64] | TVec3[uint32] | TVec3[uint64] | TVec4[uint32] | TVec4[uint64] | TVec2[float32] | TVec2[float64] | TVec3[float32] | TVec3[float64] | TVec4[float32] | TVec4[float64] | TMat2[float32] | TMat2[float64] | TMat23[float32] | TMat23[float64] | TMat32[float32] | TMat32[float64] | TMat3[float32] | TMat3[float64] | TMat34[float32] | TMat34[float64] | TMat43[float32] | TMat43[float64] | TMat4[float32] | TMat4[float64] |
1228 | 78 PixelType = TVec1[uint8] | TVec4[uint8] |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
79 |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
80 # shader related types |
1205
f7530247a21f
did: improve descriptor-set handling, add simple descriptor set test
sam <sam@basx.dev>
parents:
1204
diff
changeset
|
81 DescriptorSet*[T: object] = object |
1192 | 82 data*: T |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
83 vk: array[INFLIGHTFRAMES.int, VkDescriptorSet] |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
84 Pipeline*[TShader] = object |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
85 vk: VkPipeline |
1200
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
86 vertexShaderModule: VkShaderModule |
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
87 fragmentShaderModule: VkShaderModule |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
88 layout: VkPipelineLayout |
1205
f7530247a21f
did: improve descriptor-set handling, add simple descriptor set test
sam <sam@basx.dev>
parents:
1204
diff
changeset
|
89 descriptorSetLayouts*: array[MAX_DESCRIPTORSETS, VkDescriptorSetLayout] |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
90 |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
91 # memory/buffer related types |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
92 MemoryBlock* = object |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
93 vk: VkDeviceMemory |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
94 size: uint64 |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
95 rawPointer: pointer # if not nil, this is mapped memory |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
96 offsetNextFree: uint64 |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
97 BufferType* = enum |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
98 VertexBuffer |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
99 VertexBufferMapped |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
100 IndexBuffer |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
101 IndexBufferMapped |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
102 UniformBuffer |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
103 UniformBufferMapped |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
104 Buffer* = object |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
105 vk: VkBuffer |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
106 size: uint64 |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
107 rawPointer: pointer # if not nil, buffer is using mapped memory |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
108 offsetNextFree: uint64 |
1228 | 109 Image*[T: PixelType] = object |
1210 | 110 width*: uint32 |
111 height*: uint32 | |
112 interpolation*: VkFilter = VK_FILTER_LINEAR | |
113 data*: seq[T] | |
1214
04e446a7eb2b
add: multipass renderer, finish tets for now
sam <sam@basx.dev>
parents:
1212
diff
changeset
|
114 vk*: VkImage |
04e446a7eb2b
add: multipass renderer, finish tets for now
sam <sam@basx.dev>
parents:
1212
diff
changeset
|
115 imageview*: VkImageView |
04e446a7eb2b
add: multipass renderer, finish tets for now
sam <sam@basx.dev>
parents:
1212
diff
changeset
|
116 sampler*: VkSampler |
04e446a7eb2b
add: multipass renderer, finish tets for now
sam <sam@basx.dev>
parents:
1212
diff
changeset
|
117 isRenderTarget*: bool = false |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
118 GPUArray*[T: SupportedGPUType, TBuffer: static BufferType] = object |
1192 | 119 data*: seq[T] |
1202 | 120 buffer*: Buffer |
121 offset*: uint64 | |
1210 | 122 GPUValue*[T: object, TBuffer: static BufferType] = object |
1192 | 123 data*: T |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
124 buffer: Buffer |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
125 offset: uint64 |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
126 GPUData = GPUArray | GPUValue |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
127 |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
128 RenderData* = object |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
129 descriptorPool: VkDescriptorPool |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
130 memory: array[VK_MAX_MEMORY_TYPES.int, seq[MemoryBlock]] |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
131 buffers: array[BufferType, seq[Buffer]] |
1200
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
132 images: seq[VkImage] |
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
133 imageViews: seq[VkImageView] |
1201 | 134 samplers: seq[VkSampler] |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
135 |
1192 | 136 template ForDescriptorFields(shader: typed, fieldname, valuename, typename, countname, bindingNumber, body: untyped): untyped = |
1205
f7530247a21f
did: improve descriptor-set handling, add simple descriptor set test
sam <sam@basx.dev>
parents:
1204
diff
changeset
|
137 var `bindingNumber` {.inject.} = 0'u32 |
1192 | 138 for theFieldname, value in fieldPairs(shader): |
1228 | 139 when typeof(value) is Image: |
1192 | 140 block: |
141 const `fieldname` {.inject.} = theFieldname | |
142 const `typename` {.inject.} = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER | |
143 const `countname` {.inject.} = 1'u32 | |
144 let `valuename` {.inject.} = value | |
145 body | |
146 `bindingNumber`.inc | |
1210 | 147 elif typeof(value) is GPUValue: |
1192 | 148 block: |
149 const `fieldname` {.inject.} = theFieldname | |
150 const `typename` {.inject.} = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER | |
151 const `countname` {.inject.} = 1'u32 | |
152 let `valuename` {.inject.} = value | |
153 body | |
154 `bindingNumber`.inc | |
155 elif typeof(value) is array: | |
1228 | 156 when elementType(value) is Image: |
1192 | 157 block: |
158 const `fieldname` {.inject.} = theFieldname | |
159 const `typename` {.inject.} = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER | |
160 const `countname` {.inject.} = uint32(typeof(value).len) | |
161 let `valuename` {.inject.} = value | |
162 body | |
163 `bindingNumber`.inc | |
1210 | 164 elif elementType(value) is GPUValue: |
1192 | 165 block: |
166 const `fieldname` {.inject.} = theFieldname | |
167 const `typename` {.inject.} = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER | |
1210 | 168 const `countname` {.inject.} = len(value).uint32 |
1192 | 169 let `valuename` {.inject.} = value |
170 body | |
171 `bindingNumber`.inc | |
172 else: | |
173 {.error: "Unsupported descriptor type: " & typetraits.name(typeof(value)).} | |
1210 | 174 else: |
175 {.error: "Unsupported descriptor type: " & typetraits.name(typeof(value)).} | |
1192 | 176 |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
177 include ./rendering/vulkan_wrappers |
1199 | 178 include ./rendering/renderpasses |
1194 | 179 include ./rendering/swapchain |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
180 include ./rendering/shaders |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
diff
changeset
|
181 include ./rendering/renderer |
1193 | 182 |
1199 | 183 proc debugCallback( |
184 messageSeverity: VkDebugUtilsMessageSeverityFlagBitsEXT, | |
185 messageTypes: VkDebugUtilsMessageTypeFlagsEXT, | |
186 pCallbackData: ptr VkDebugUtilsMessengerCallbackDataEXT, | |
187 userData: pointer | |
188 ): VkBool32 {.cdecl.} = | |
189 const LOG_LEVEL_MAPPING = { | |
190 VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT: lvlDebug, | |
191 VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT: lvlInfo, | |
192 VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT: lvlWarn, | |
193 VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT: lvlError, | |
194 }.toTable | |
195 log LOG_LEVEL_MAPPING[messageSeverity], &"{toEnums messageTypes}: {pCallbackData.pMessage}" | |
196 if messageSeverity == VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT: | |
197 stderr.writeLine "-----------------------------------" | |
198 stderr.write getStackTrace() | |
199 stderr.writeLine LOG_LEVEL_MAPPING[messageSeverity], &"{toEnums messageTypes}: {pCallbackData.pMessage}" | |
200 stderr.writeLine "-----------------------------------" | |
201 let errorMsg = getStackTrace() & &"\n{toEnums messageTypes}: {pCallbackData.pMessage}" | |
202 raise newException(Exception, errorMsg) | |
203 return false | |
1193 | 204 |
1204 | 205 proc InitVulkan*(appName: string = "semicongine app") = |
1193 | 206 |
207 include ./platform/vulkan_extensions # for REQUIRED_PLATFORM_EXTENSIONS | |
208 | |
209 # instance creation | |
1198 | 210 |
211 # enagle all kind of debug stuff | |
1193 | 212 when not defined(release): |
213 let requiredExtensions = REQUIRED_PLATFORM_EXTENSIONS & @["VK_KHR_surface", "VK_EXT_debug_utils"] | |
214 let layers: seq[string] = if hasValidationLayer(): @["VK_LAYER_KHRONOS_validation"] else: @[] | |
1198 | 215 putEnv("VK_LAYER_ENABLES", "VALIDATION_CHECK_ENABLE_VENDOR_SPECIFIC_AMD,VALIDATION_CHECK_ENABLE_VENDOR_SPECIFIC_NVIDIA,VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXTVK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT,VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT") |
1193 | 216 else: |
217 let requiredExtensions = REQUIRED_PLATFORM_EXTENSIONS & @["VK_KHR_surface"] | |
218 let layers: seq[string] | |
219 | |
220 var | |
221 layersC = allocCStringArray(layers) | |
222 instanceExtensionsC = allocCStringArray(requiredExtensions) | |
223 defer: | |
224 deallocCStringArray(layersC) | |
225 deallocCStringArray(instanceExtensionsC) | |
226 | |
227 var | |
228 appinfo = VkApplicationInfo( | |
229 sType: VK_STRUCTURE_TYPE_APPLICATION_INFO, | |
230 pApplicationName: appName, | |
231 pEngineName: "semicongine", | |
232 apiVersion: VK_MAKE_API_VERSION(0, 1, 3, 0), | |
233 ) | |
234 createinfo = VkInstanceCreateInfo( | |
235 sType: VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO, | |
236 pApplicationInfo: addr(appinfo), | |
237 enabledLayerCount: layers.len.uint32, | |
238 ppEnabledLayerNames: layersC, | |
239 enabledExtensionCount: requiredExtensions.len.uint32, | |
240 ppEnabledExtensionNames: instanceExtensionsC | |
241 ) | |
1204 | 242 checkVkResult vkCreateInstance(addr(createinfo), nil, addr(vulkan.instance)) |
243 loadVulkan(vulkan.instance) | |
1193 | 244 |
245 # load extensions | |
246 # | |
247 for extension in requiredExtensions: | |
1204 | 248 loadExtension(vulkan.instance, $extension) |
249 vulkan.window = CreateWindow(appName) | |
250 vulkan.surface = CreateNativeSurface(vulkan.instance, vulkan.window) | |
1193 | 251 |
252 # logical device creation | |
253 | |
254 # TODO: allowing support for physical devices without hasUniformBufferStandardLayout | |
255 # would require us to ship different shaders, so we don't support standard layout | |
256 # if that will be added, check the function vulkan/shaders.nim:glslUniforms and update accordingly | |
257 # let hasUniformBufferStandardLayout = "VK_KHR_uniform_buffer_standard_layout" in physicalDevice.getExtensions() | |
258 # var deviceExtensions = @["VK_KHR_swapchain", "VK_KHR_uniform_buffer_standard_layout"] | |
259 var deviceExtensions = @["VK_KHR_swapchain"] | |
260 for extension in deviceExtensions: | |
1204 | 261 loadExtension(vulkan.instance, extension) |
1193 | 262 |
1199 | 263 when not defined(release): |
264 var debugMessengerCreateInfo = VkDebugUtilsMessengerCreateInfoEXT( | |
265 sType: VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT, | |
266 messageSeverity: VkDebugUtilsMessageSeverityFlagBitsEXT.items.toSeq.toBits, | |
267 messageType: VkDebugUtilsMessageTypeFlagBitsEXT.items.toSeq.toBits, | |
268 pfnUserCallback: debugCallback, | |
269 pUserData: nil, | |
270 ) | |
271 checkVkResult vkCreateDebugUtilsMessengerEXT( | |
1204 | 272 vulkan.instance, |
1199 | 273 addr(debugMessengerCreateInfo), |
274 nil, | |
1204 | 275 addr(vulkan.debugMessenger) |
1199 | 276 ) |
277 | |
1193 | 278 # get physical device and graphics queue family |
1204 | 279 vulkan.physicalDevice = GetBestPhysicalDevice(vulkan.instance) |
280 vulkan.graphicsQueueFamily = GetQueueFamily(vulkan.physicalDevice, VK_QUEUE_GRAPHICS_BIT) | |
1193 | 281 |
282 let | |
283 priority = cfloat(1) | |
284 queueInfo = VkDeviceQueueCreateInfo( | |
285 sType: VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO, | |
1204 | 286 queueFamilyIndex: vulkan.graphicsQueueFamily, |
1193 | 287 queueCount: 1, |
288 pQueuePriorities: addr(priority), | |
289 ) | |
290 deviceExtensionsC = allocCStringArray(deviceExtensions) | |
291 defer: deallocCStringArray(deviceExtensionsC) | |
292 var createDeviceInfo = VkDeviceCreateInfo( | |
293 sType: VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO, | |
294 queueCreateInfoCount: 1, | |
295 pQueueCreateInfos: addr(queueInfo), | |
296 enabledLayerCount: 0, | |
297 ppEnabledLayerNames: nil, | |
298 enabledExtensionCount: uint32(deviceExtensions.len), | |
299 ppEnabledExtensionNames: deviceExtensionsC, | |
300 pEnabledFeatures: nil, | |
301 ) | |
302 checkVkResult vkCreateDevice( | |
1204 | 303 physicalDevice = vulkan.physicalDevice, |
1193 | 304 pCreateInfo = addr createDeviceInfo, |
305 pAllocator = nil, | |
1204 | 306 pDevice = addr vulkan.device |
1193 | 307 ) |
1204 | 308 vulkan.graphicsQueue = svkGetDeviceQueue(vulkan.device, vulkan.graphicsQueueFamily, VK_QUEUE_GRAPHICS_BIT) |
1193 | 309 |
1200
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
310 proc DestroyVulkan*() = |
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
311 vkDestroyDevice(vulkan.device, nil) |
1201 | 312 vkDestroySurfaceKHR(vulkan.instance, vulkan.surface, nil) |
313 vkDestroyDebugUtilsMessengerEXT(vulkan.instance, vulkan.debugMessenger, nil) | |
1200
5c6491f28dcd
did: simplify some swapchain stuff, add many destructor calls
sam <sam@basx.dev>
parents:
1199
diff
changeset
|
314 vkDestroyInstance(vulkan.instance, nil) |
1226 | 315 |
316 proc ShowSystemCursor*() = vulkan.window.ShowSystemCursor() | |
317 proc HideSystemCursor*() = vulkan.window.HideSystemCursor() | |
318 proc Fullscreen*(): bool = fullscreen | |
319 proc `Fullscreen=`*(enable: bool) = | |
320 if enable != fullscreen: | |
321 fullscreen = enable | |
322 vulkan.window.Fullscreen(fullscreen) | |
323 | |
324 func GetAspectRatio*(swapchain: Swapchain): float32 = swapchain.width.float32 / swapchain.height.float32 | |
325 | |
326 proc MaxFramebufferSampleCount*(maxSamples = VK_SAMPLE_COUNT_8_BIT): VkSampleCountFlagBits = | |
327 let limits = svkGetPhysicalDeviceProperties().limits | |
328 let available = VkSampleCountFlags( | |
329 limits.framebufferColorSampleCounts.uint32 and limits.framebufferDepthSampleCounts.uint32 | |
330 ).toEnums | |
331 return min(max(available), maxSamples) | |
332 | |
333 | |
1228 | 334 proc `[]`*(image: Image, x, y: uint32): auto = |
335 assert x < image.width, &"{x} < {image.width} is not true" | |
336 assert y < image.height, &"{y} < {image.height} is not true" | |
1226 | 337 |
1228 | 338 image[].imagedata[y * image.width + x] |
1226 | 339 |
1228 | 340 proc `[]=`*[T](image: var Image[T], x, y: uint32, value: T) = |
341 assert x < image.width | |
342 assert y < image.height | |
1226 | 343 |
1228 | 344 image[].imagedata[y * image.width + x] = value |