Lines Matching refs:INIT_PROC
33 #define INIT_PROC(required, obj, proc) \ macro
48 INIT_PROC(required, obj, proc); \
152 INIT_PROC(true, instance, DestroyInstance); in InitDispatchTable()
153 INIT_PROC(true, instance, EnumeratePhysicalDevices); in InitDispatchTable()
154 INIT_PROC(true, instance, GetInstanceProcAddr); in InitDispatchTable()
155 INIT_PROC(true, instance, GetPhysicalDeviceProperties); in InitDispatchTable()
156 INIT_PROC(true, instance, GetPhysicalDeviceQueueFamilyProperties); in InitDispatchTable()
157 INIT_PROC(true, instance, GetPhysicalDeviceMemoryProperties); in InitDispatchTable()
158 INIT_PROC(true, instance, GetPhysicalDeviceFeatures); in InitDispatchTable()
159 INIT_PROC(true, instance, GetPhysicalDeviceFormatProperties); in InitDispatchTable()
160 INIT_PROC(true, instance, GetPhysicalDeviceImageFormatProperties); in InitDispatchTable()
161 INIT_PROC(true, instance, CreateDevice); in InitDispatchTable()
162 INIT_PROC(true, instance, EnumerateDeviceExtensionProperties); in InitDispatchTable()
163 INIT_PROC(true, instance, GetPhysicalDeviceSparseImageFormatProperties); in InitDispatchTable()
170 INIT_PROC(false, instance, GetPhysicalDeviceFeatures2); in InitDispatchTable()
171 INIT_PROC(false, instance, GetPhysicalDeviceProperties2); in InitDispatchTable()
172 INIT_PROC(false, instance, GetPhysicalDeviceFormatProperties2); in InitDispatchTable()
173 INIT_PROC(false, instance, GetPhysicalDeviceImageFormatProperties2); in InitDispatchTable()
174 INIT_PROC(false, instance, GetPhysicalDeviceQueueFamilyProperties2); in InitDispatchTable()
175 INIT_PROC(false, instance, GetPhysicalDeviceMemoryProperties2); in InitDispatchTable()
176 INIT_PROC(false, instance, GetPhysicalDeviceSparseImageFormatProperties2); in InitDispatchTable()
177 INIT_PROC(false, instance, GetPhysicalDeviceExternalBufferProperties); in InitDispatchTable()
178 INIT_PROC(false, instance, GetPhysicalDeviceExternalSemaphoreProperties); in InitDispatchTable()
179 INIT_PROC(false, instance, GetPhysicalDeviceExternalFenceProperties); in InitDispatchTable()
180 INIT_PROC(false, instance, EnumeratePhysicalDeviceGroups); in InitDispatchTable()
195 INIT_PROC(true, dev, GetDeviceProcAddr); in InitDispatchTable()
196 INIT_PROC(true, dev, DestroyDevice); in InitDispatchTable()
197 INIT_PROC(true, dev, GetDeviceQueue); in InitDispatchTable()
198 INIT_PROC(true, dev, QueueSubmit); in InitDispatchTable()
199 INIT_PROC(true, dev, QueueWaitIdle); in InitDispatchTable()
200 INIT_PROC(true, dev, DeviceWaitIdle); in InitDispatchTable()
201 INIT_PROC(true, dev, AllocateMemory); in InitDispatchTable()
202 INIT_PROC(true, dev, FreeMemory); in InitDispatchTable()
203 INIT_PROC(true, dev, MapMemory); in InitDispatchTable()
204 INIT_PROC(true, dev, UnmapMemory); in InitDispatchTable()
205 INIT_PROC(true, dev, FlushMappedMemoryRanges); in InitDispatchTable()
206 INIT_PROC(true, dev, InvalidateMappedMemoryRanges); in InitDispatchTable()
207 INIT_PROC(true, dev, GetDeviceMemoryCommitment); in InitDispatchTable()
208 INIT_PROC(true, dev, GetBufferMemoryRequirements); in InitDispatchTable()
209 INIT_PROC(true, dev, BindBufferMemory); in InitDispatchTable()
210 INIT_PROC(true, dev, GetImageMemoryRequirements); in InitDispatchTable()
211 INIT_PROC(true, dev, BindImageMemory); in InitDispatchTable()
212 INIT_PROC(true, dev, GetImageSparseMemoryRequirements); in InitDispatchTable()
213 INIT_PROC(true, dev, QueueBindSparse); in InitDispatchTable()
214 INIT_PROC(true, dev, CreateFence); in InitDispatchTable()
215 INIT_PROC(true, dev, DestroyFence); in InitDispatchTable()
216 INIT_PROC(true, dev, ResetFences); in InitDispatchTable()
217 INIT_PROC(true, dev, GetFenceStatus); in InitDispatchTable()
218 INIT_PROC(true, dev, WaitForFences); in InitDispatchTable()
219 INIT_PROC(true, dev, CreateSemaphore); in InitDispatchTable()
220 INIT_PROC(true, dev, DestroySemaphore); in InitDispatchTable()
221 INIT_PROC(true, dev, CreateEvent); in InitDispatchTable()
222 INIT_PROC(true, dev, DestroyEvent); in InitDispatchTable()
223 INIT_PROC(true, dev, GetEventStatus); in InitDispatchTable()
224 INIT_PROC(true, dev, SetEvent); in InitDispatchTable()
225 INIT_PROC(true, dev, ResetEvent); in InitDispatchTable()
226 INIT_PROC(true, dev, CreateQueryPool); in InitDispatchTable()
227 INIT_PROC(true, dev, DestroyQueryPool); in InitDispatchTable()
228 INIT_PROC(true, dev, GetQueryPoolResults); in InitDispatchTable()
229 INIT_PROC(true, dev, CreateBuffer); in InitDispatchTable()
230 INIT_PROC(true, dev, DestroyBuffer); in InitDispatchTable()
231 INIT_PROC(true, dev, CreateBufferView); in InitDispatchTable()
232 INIT_PROC(true, dev, DestroyBufferView); in InitDispatchTable()
233 INIT_PROC(true, dev, CreateImage); in InitDispatchTable()
234 INIT_PROC(true, dev, DestroyImage); in InitDispatchTable()
235 INIT_PROC(true, dev, GetImageSubresourceLayout); in InitDispatchTable()
236 INIT_PROC(true, dev, CreateImageView); in InitDispatchTable()
237 INIT_PROC(true, dev, DestroyImageView); in InitDispatchTable()
238 INIT_PROC(true, dev, CreateShaderModule); in InitDispatchTable()
239 INIT_PROC(true, dev, DestroyShaderModule); in InitDispatchTable()
240 INIT_PROC(true, dev, CreatePipelineCache); in InitDispatchTable()
241 INIT_PROC(true, dev, DestroyPipelineCache); in InitDispatchTable()
242 INIT_PROC(true, dev, GetPipelineCacheData); in InitDispatchTable()
243 INIT_PROC(true, dev, MergePipelineCaches); in InitDispatchTable()
244 INIT_PROC(true, dev, CreateGraphicsPipelines); in InitDispatchTable()
245 INIT_PROC(true, dev, CreateComputePipelines); in InitDispatchTable()
246 INIT_PROC(true, dev, DestroyPipeline); in InitDispatchTable()
247 INIT_PROC(true, dev, CreatePipelineLayout); in InitDispatchTable()
248 INIT_PROC(true, dev, DestroyPipelineLayout); in InitDispatchTable()
249 INIT_PROC(true, dev, CreateSampler); in InitDispatchTable()
250 INIT_PROC(true, dev, DestroySampler); in InitDispatchTable()
251 INIT_PROC(true, dev, CreateDescriptorSetLayout); in InitDispatchTable()
252 INIT_PROC(true, dev, DestroyDescriptorSetLayout); in InitDispatchTable()
253 INIT_PROC(true, dev, CreateDescriptorPool); in InitDispatchTable()
254 INIT_PROC(true, dev, DestroyDescriptorPool); in InitDispatchTable()
255 INIT_PROC(true, dev, ResetDescriptorPool); in InitDispatchTable()
256 INIT_PROC(true, dev, AllocateDescriptorSets); in InitDispatchTable()
257 INIT_PROC(true, dev, FreeDescriptorSets); in InitDispatchTable()
258 INIT_PROC(true, dev, UpdateDescriptorSets); in InitDispatchTable()
259 INIT_PROC(true, dev, CreateFramebuffer); in InitDispatchTable()
260 INIT_PROC(true, dev, DestroyFramebuffer); in InitDispatchTable()
261 INIT_PROC(true, dev, CreateRenderPass); in InitDispatchTable()
262 INIT_PROC(true, dev, DestroyRenderPass); in InitDispatchTable()
263 INIT_PROC(true, dev, GetRenderAreaGranularity); in InitDispatchTable()
264 INIT_PROC(true, dev, CreateCommandPool); in InitDispatchTable()
265 INIT_PROC(true, dev, DestroyCommandPool); in InitDispatchTable()
266 INIT_PROC(true, dev, ResetCommandPool); in InitDispatchTable()
267 INIT_PROC(true, dev, AllocateCommandBuffers); in InitDispatchTable()
268 INIT_PROC(true, dev, FreeCommandBuffers); in InitDispatchTable()
269 INIT_PROC(true, dev, BeginCommandBuffer); in InitDispatchTable()
270 INIT_PROC(true, dev, EndCommandBuffer); in InitDispatchTable()
271 INIT_PROC(true, dev, ResetCommandBuffer); in InitDispatchTable()
272 INIT_PROC(true, dev, CmdBindPipeline); in InitDispatchTable()
273 INIT_PROC(true, dev, CmdSetViewport); in InitDispatchTable()
274 INIT_PROC(true, dev, CmdSetScissor); in InitDispatchTable()
275 INIT_PROC(true, dev, CmdSetLineWidth); in InitDispatchTable()
276 INIT_PROC(true, dev, CmdSetDepthBias); in InitDispatchTable()
277 INIT_PROC(true, dev, CmdSetBlendConstants); in InitDispatchTable()
278 INIT_PROC(true, dev, CmdSetDepthBounds); in InitDispatchTable()
279 INIT_PROC(true, dev, CmdSetStencilCompareMask); in InitDispatchTable()
280 INIT_PROC(true, dev, CmdSetStencilWriteMask); in InitDispatchTable()
281 INIT_PROC(true, dev, CmdSetStencilReference); in InitDispatchTable()
282 INIT_PROC(true, dev, CmdBindDescriptorSets); in InitDispatchTable()
283 INIT_PROC(true, dev, CmdBindIndexBuffer); in InitDispatchTable()
284 INIT_PROC(true, dev, CmdBindVertexBuffers); in InitDispatchTable()
285 INIT_PROC(true, dev, CmdDraw); in InitDispatchTable()
286 INIT_PROC(true, dev, CmdDrawIndexed); in InitDispatchTable()
287 INIT_PROC(true, dev, CmdDrawIndirect); in InitDispatchTable()
288 INIT_PROC(true, dev, CmdDrawIndexedIndirect); in InitDispatchTable()
289 INIT_PROC(true, dev, CmdDispatch); in InitDispatchTable()
290 INIT_PROC(true, dev, CmdDispatchIndirect); in InitDispatchTable()
291 INIT_PROC(true, dev, CmdCopyBuffer); in InitDispatchTable()
292 INIT_PROC(true, dev, CmdCopyImage); in InitDispatchTable()
293 INIT_PROC(true, dev, CmdBlitImage); in InitDispatchTable()
294 INIT_PROC(true, dev, CmdCopyBufferToImage); in InitDispatchTable()
295 INIT_PROC(true, dev, CmdCopyImageToBuffer); in InitDispatchTable()
296 INIT_PROC(true, dev, CmdUpdateBuffer); in InitDispatchTable()
297 INIT_PROC(true, dev, CmdFillBuffer); in InitDispatchTable()
298 INIT_PROC(true, dev, CmdClearColorImage); in InitDispatchTable()
299 INIT_PROC(true, dev, CmdClearDepthStencilImage); in InitDispatchTable()
300 INIT_PROC(true, dev, CmdClearAttachments); in InitDispatchTable()
301 INIT_PROC(true, dev, CmdResolveImage); in InitDispatchTable()
302 INIT_PROC(true, dev, CmdSetEvent); in InitDispatchTable()
303 INIT_PROC(true, dev, CmdResetEvent); in InitDispatchTable()
304 INIT_PROC(true, dev, CmdWaitEvents); in InitDispatchTable()
305 INIT_PROC(true, dev, CmdPipelineBarrier); in InitDispatchTable()
306 INIT_PROC(true, dev, CmdBeginQuery); in InitDispatchTable()
307 INIT_PROC(true, dev, CmdEndQuery); in InitDispatchTable()
308 INIT_PROC(true, dev, CmdResetQueryPool); in InitDispatchTable()
309 INIT_PROC(true, dev, CmdWriteTimestamp); in InitDispatchTable()
310 INIT_PROC(true, dev, CmdCopyQueryPoolResults); in InitDispatchTable()
311 INIT_PROC(true, dev, CmdPushConstants); in InitDispatchTable()
312 INIT_PROC(true, dev, CmdBeginRenderPass); in InitDispatchTable()
313 INIT_PROC(true, dev, CmdNextSubpass); in InitDispatchTable()
314 INIT_PROC(true, dev, CmdEndRenderPass); in InitDispatchTable()
315 INIT_PROC(true, dev, CmdExecuteCommands); in InitDispatchTable()
321 INIT_PROC(false, dev, TrimCommandPool); in InitDispatchTable()
322 INIT_PROC(false, dev, GetDeviceGroupPeerMemoryFeatures); in InitDispatchTable()
323 INIT_PROC(false, dev, BindBufferMemory2); in InitDispatchTable()
324 INIT_PROC(false, dev, BindImageMemory2); in InitDispatchTable()
325 INIT_PROC(false, dev, CmdSetDeviceMask); in InitDispatchTable()
329 INIT_PROC(false, dev, CmdDispatchBase); in InitDispatchTable()
330 INIT_PROC(false, dev, CreateDescriptorUpdateTemplate); in InitDispatchTable()
331 INIT_PROC(false, dev, DestroyDescriptorUpdateTemplate); in InitDispatchTable()
332 INIT_PROC(false, dev, UpdateDescriptorSetWithTemplate); in InitDispatchTable()
333 INIT_PROC(false, dev, GetBufferMemoryRequirements2); in InitDispatchTable()
334 INIT_PROC(false, dev, GetImageMemoryRequirements2); in InitDispatchTable()
335 INIT_PROC(false, dev, GetImageSparseMemoryRequirements2); in InitDispatchTable()
336 INIT_PROC(false, dev, CreateSamplerYcbcrConversion); in InitDispatchTable()
337 INIT_PROC(false, dev, DestroySamplerYcbcrConversion); in InitDispatchTable()
338 INIT_PROC(false, dev, GetDeviceQueue2); in InitDispatchTable()
339 INIT_PROC(false, dev, GetDescriptorSetLayoutSupport); in InitDispatchTable()