forked from vulkan-go/vulkan
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vk_bridge.c
1425 lines (1247 loc) · 61.5 KB
/
vk_bridge.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "vk_wrapper.h"
#include "vk_bridge.h"
VkResult callVkCreateInstance(
const VkInstanceCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkInstance* pInstance) {
return vgo_vkCreateInstance(pCreateInfo, pAllocator, pInstance);
}
void callVkDestroyInstance(
VkInstance instance,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyInstance(instance, pAllocator);
}
VkResult callVkEnumeratePhysicalDevices(
VkInstance instance,
uint32_t* pPhysicalDeviceCount,
VkPhysicalDevice* pPhysicalDevices) {
return vgo_vkEnumeratePhysicalDevices(instance, pPhysicalDeviceCount, pPhysicalDevices);
}
void callVkGetPhysicalDeviceFeatures(
VkPhysicalDevice physicalDevice,
VkPhysicalDeviceFeatures* pFeatures) {
vgo_vkGetPhysicalDeviceFeatures(physicalDevice, pFeatures);
}
void callVkGetPhysicalDeviceFormatProperties(
VkPhysicalDevice physicalDevice,
VkFormat format,
VkFormatProperties* pFormatProperties) {
vgo_vkGetPhysicalDeviceFormatProperties(physicalDevice, format, pFormatProperties);
}
VkResult callVkGetPhysicalDeviceImageFormatProperties(
VkPhysicalDevice physicalDevice,
VkFormat format,
VkImageType type,
VkImageTiling tiling,
VkImageUsageFlags usage,
VkImageCreateFlags flags,
VkImageFormatProperties* pImageFormatProperties) {
return vgo_vkGetPhysicalDeviceImageFormatProperties(physicalDevice, format, type,
tiling, usage, flags, pImageFormatProperties);
}
void callVkGetPhysicalDeviceProperties(
VkPhysicalDevice physicalDevice,
VkPhysicalDeviceProperties* pProperties) {
vgo_vkGetPhysicalDeviceProperties(physicalDevice, pProperties);
}
void callVkGetPhysicalDeviceQueueFamilyProperties(
VkPhysicalDevice physicalDevice,
uint32_t* pQueueFamilyPropertyCount,
VkQueueFamilyProperties* pQueueFamilyProperties) {
vgo_vkGetPhysicalDeviceQueueFamilyProperties(physicalDevice,
pQueueFamilyPropertyCount, pQueueFamilyProperties);
}
void callVkGetPhysicalDeviceMemoryProperties(
VkPhysicalDevice physicalDevice,
VkPhysicalDeviceMemoryProperties* pMemoryProperties) {
vgo_vkGetPhysicalDeviceMemoryProperties(physicalDevice, pMemoryProperties);
}
VkResult callVkCreateDevice(
VkPhysicalDevice physicalDevice,
const VkDeviceCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkDevice* pDevice) {
return vgo_vkCreateDevice(physicalDevice, pCreateInfo, pAllocator, pDevice);
}
void callVkDestroyDevice(
VkDevice device,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyDevice(device, pAllocator);
}
VkResult callVkEnumerateInstanceExtensionProperties(
const char* pLayerName,
uint32_t* pPropertyCount,
VkExtensionProperties* pProperties) {
return vgo_vkEnumerateInstanceExtensionProperties(pLayerName, pPropertyCount, pProperties);
}
VkResult callVkEnumerateDeviceExtensionProperties(
VkPhysicalDevice physicalDevice,
const char* pLayerName,
uint32_t* pPropertyCount,
VkExtensionProperties* pProperties) {
return vgo_vkEnumerateDeviceExtensionProperties(physicalDevice, pLayerName,
pPropertyCount, pProperties);
}
VkResult callVkEnumerateInstanceLayerProperties(
uint32_t* pPropertyCount,
VkLayerProperties* pProperties) {
return vgo_vkEnumerateInstanceLayerProperties(pPropertyCount, pProperties);
}
VkResult callVkEnumerateDeviceLayerProperties(
VkPhysicalDevice physicalDevice,
uint32_t* pPropertyCount,
VkLayerProperties* pProperties) {
return vgo_vkEnumerateDeviceLayerProperties(physicalDevice, pPropertyCount, pProperties);
}
void callVkGetDeviceQueue(
VkDevice device,
uint32_t queueFamilyIndex,
uint32_t queueIndex,
VkQueue* pQueue) {
vgo_vkGetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue);
}
VkResult callVkQueueSubmit(
VkQueue queue,
uint32_t submitCount,
const VkSubmitInfo* pSubmits,
VkFence fence) {
return vgo_vkQueueSubmit(queue, submitCount, pSubmits, fence);
}
VkResult callVkQueueWaitIdle(
VkQueue queue) {
return vgo_vkQueueWaitIdle(queue);
}
VkResult callVkDeviceWaitIdle(
VkDevice device) {
return vgo_vkDeviceWaitIdle(device);
}
VkResult callVkAllocateMemory(
VkDevice device,
const VkMemoryAllocateInfo* pAllocateInfo,
const VkAllocationCallbacks* pAllocator,
VkDeviceMemory* pMemory) {
return vgo_vkAllocateMemory(device, pAllocateInfo, pAllocator, pMemory);
}
void callVkFreeMemory(
VkDevice device,
VkDeviceMemory memory,
const VkAllocationCallbacks* pAllocator) {
vgo_vkFreeMemory(device, memory, pAllocator);
}
VkResult callVkMapMemory(
VkDevice device,
VkDeviceMemory memory,
VkDeviceSize offset,
VkDeviceSize size,
VkMemoryMapFlags flags,
void** ppData) {
return vgo_vkMapMemory(device, memory, offset, size, flags, ppData);
}
void callVkUnmapMemory(
VkDevice device,
VkDeviceMemory memory) {
vgo_vkUnmapMemory(device, memory);
}
VkResult callVkFlushMappedMemoryRanges(
VkDevice device,
uint32_t memoryRangeCount,
const VkMappedMemoryRange* pMemoryRanges) {
return vgo_vkFlushMappedMemoryRanges(device, memoryRangeCount, pMemoryRanges);
}
VkResult callVkInvalidateMappedMemoryRanges(
VkDevice device,
uint32_t memoryRangeCount,
const VkMappedMemoryRange* pMemoryRanges) {
return vgo_vkInvalidateMappedMemoryRanges(device, memoryRangeCount, pMemoryRanges);
}
void callVkGetDeviceMemoryCommitment(
VkDevice device,
VkDeviceMemory memory,
VkDeviceSize* pCommittedMemoryInBytes) {
vgo_vkGetDeviceMemoryCommitment(device, memory, pCommittedMemoryInBytes);
}
VkResult callVkBindBufferMemory(
VkDevice device,
VkBuffer buffer,
VkDeviceMemory memory,
VkDeviceSize memoryOffset) {
return vgo_vkBindBufferMemory(device, buffer, memory, memoryOffset);
}
VkResult callVkBindImageMemory(
VkDevice device,
VkImage image,
VkDeviceMemory memory,
VkDeviceSize memoryOffset) {
return vgo_vkBindImageMemory(device, image, memory, memoryOffset);
}
void callVkGetBufferMemoryRequirements(
VkDevice device,
VkBuffer buffer,
VkMemoryRequirements* pMemoryRequirements) {
vgo_vkGetBufferMemoryRequirements(device, buffer, pMemoryRequirements);
}
void callVkGetImageMemoryRequirements(
VkDevice device,
VkImage image,
VkMemoryRequirements* pMemoryRequirements) {
vgo_vkGetImageMemoryRequirements(device, image, pMemoryRequirements);
}
void callVkGetImageSparseMemoryRequirements(
VkDevice device,
VkImage image,
uint32_t* pSparseMemoryRequirementCount,
VkSparseImageMemoryRequirements* pSparseMemoryRequirements) {
vgo_vkGetImageSparseMemoryRequirements(device, image, pSparseMemoryRequirementCount,
pSparseMemoryRequirements);
}
void callVkGetPhysicalDeviceSparseImageFormatProperties(
VkPhysicalDevice physicalDevice,
VkFormat format,
VkImageType type,
VkSampleCountFlagBits samples,
VkImageUsageFlags usage,
VkImageTiling tiling,
uint32_t* pPropertyCount,
VkSparseImageFormatProperties* pProperties) {
vgo_vkGetPhysicalDeviceSparseImageFormatProperties(physicalDevice, format,
type, samples, usage, tiling, pPropertyCount, pProperties);
}
VkResult callVkQueueBindSparse(
VkQueue queue,
uint32_t bindInfoCount,
const VkBindSparseInfo* pBindInfo,
VkFence fence) {
return vgo_vkQueueBindSparse(queue, bindInfoCount, pBindInfo, fence);
}
VkResult callVkCreateFence(
VkDevice device,
const VkFenceCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkFence* pFence) {
return vgo_vkCreateFence(device, pCreateInfo, pAllocator, pFence);
}
void callVkDestroyFence(
VkDevice device,
VkFence fence,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyFence(device, fence, pAllocator);
}
VkResult callVkResetFences(
VkDevice device,
uint32_t fenceCount,
const VkFence* pFences) {
return vgo_vkResetFences(device, fenceCount, pFences);
}
VkResult callVkGetFenceStatus(
VkDevice device,
VkFence fence) {
return vgo_vkGetFenceStatus(device, fence);
}
VkResult callVkWaitForFences(
VkDevice device,
uint32_t fenceCount,
const VkFence* pFences,
VkBool32 waitAll,
uint64_t timeout) {
return vgo_vkWaitForFences(device, fenceCount, pFences, waitAll, timeout);
}
VkResult callVkCreateSemaphore(
VkDevice device,
const VkSemaphoreCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSemaphore* pSemaphore) {
return vgo_vkCreateSemaphore(device, pCreateInfo, pAllocator, pSemaphore);
}
void callVkDestroySemaphore(
VkDevice device,
VkSemaphore semaphore,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroySemaphore(device, semaphore, pAllocator);
}
VkResult callVkCreateEvent(
VkDevice device,
const VkEventCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkEvent* pEvent) {
return vgo_vkCreateEvent(device, pCreateInfo, pAllocator, pEvent);
}
void callVkDestroyEvent(
VkDevice device,
VkEvent event,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyEvent(device, event, pAllocator);
}
VkResult callVkGetEventStatus(
VkDevice device,
VkEvent event) {
return vgo_vkGetEventStatus(device, event);
}
VkResult callVkSetEvent(
VkDevice device,
VkEvent event) {
return vgo_vkSetEvent(device, event);
}
VkResult callVkResetEvent(
VkDevice device,
VkEvent event) {
return vgo_vkResetEvent(device, event);
}
VkResult callVkCreateQueryPool(
VkDevice device,
const VkQueryPoolCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkQueryPool* pQueryPool) {
return vgo_vkCreateQueryPool(device, pCreateInfo, pAllocator, pQueryPool);
}
void callVkDestroyQueryPool(
VkDevice device,
VkQueryPool queryPool,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyQueryPool(device, queryPool, pAllocator);
}
VkResult callVkGetQueryPoolResults(
VkDevice device,
VkQueryPool queryPool,
uint32_t firstQuery,
uint32_t queryCount,
size_t dataSize,
void* pData,
VkDeviceSize stride,
VkQueryResultFlags flags) {
return vgo_vkGetQueryPoolResults(device, queryPool, firstQuery, queryCount,
dataSize, pData, stride, flags);
}
VkResult callVkCreateBuffer(
VkDevice device,
const VkBufferCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkBuffer* pBuffer) {
return vgo_vkCreateBuffer(device, pCreateInfo, pAllocator, pBuffer);
}
void callVkDestroyBuffer(
VkDevice device,
VkBuffer buffer,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyBuffer(device, buffer, pAllocator);
}
VkResult callVkCreateBufferView(
VkDevice device,
const VkBufferViewCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkBufferView* pView) {
return vgo_vkCreateBufferView(device, pCreateInfo, pAllocator, pView);
}
void callVkDestroyBufferView(
VkDevice device,
VkBufferView bufferView,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyBufferView(device, bufferView, pAllocator);
}
VkResult callVkCreateImage(
VkDevice device,
const VkImageCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkImage* pImage) {
return vgo_vkCreateImage(device, pCreateInfo, pAllocator, pImage);
}
void callVkDestroyImage(
VkDevice device,
VkImage image,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyImage(device, image, pAllocator);
}
void callVkGetImageSubresourceLayout(
VkDevice device,
VkImage image,
const VkImageSubresource* pSubresource,
VkSubresourceLayout* pLayout) {
vgo_vkGetImageSubresourceLayout(device, image, pSubresource, pLayout);
}
VkResult callVkCreateImageView(
VkDevice device,
const VkImageViewCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkImageView* pView) {
return vgo_vkCreateImageView(device, pCreateInfo, pAllocator, pView);
}
void callVkDestroyImageView(
VkDevice device,
VkImageView imageView,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyImageView(device, imageView, pAllocator);
}
VkResult callVkCreateShaderModule(
VkDevice device,
const VkShaderModuleCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkShaderModule* pShaderModule) {
return vgo_vkCreateShaderModule(device, pCreateInfo, pAllocator, pShaderModule);
}
void callVkDestroyShaderModule(
VkDevice device,
VkShaderModule shaderModule,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyShaderModule(device, shaderModule, pAllocator);
}
VkResult callVkCreatePipelineCache(
VkDevice device,
const VkPipelineCacheCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkPipelineCache* pPipelineCache) {
return vgo_vkCreatePipelineCache(device, pCreateInfo, pAllocator, pPipelineCache);
}
void callVkDestroyPipelineCache(
VkDevice device,
VkPipelineCache pipelineCache,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyPipelineCache(device, pipelineCache, pAllocator);
}
VkResult callVkGetPipelineCacheData(
VkDevice device,
VkPipelineCache pipelineCache,
size_t* pDataSize,
void* pData) {
return vgo_vkGetPipelineCacheData(device, pipelineCache, pDataSize, pData);
}
VkResult callVkMergePipelineCaches(
VkDevice device,
VkPipelineCache dstCache,
uint32_t srcCacheCount,
const VkPipelineCache* pSrcCaches) {
return vgo_vkMergePipelineCaches(device, dstCache, srcCacheCount, pSrcCaches);
}
VkResult callVkCreateGraphicsPipelines(
VkDevice device,
VkPipelineCache pipelineCache,
uint32_t createInfoCount,
const VkGraphicsPipelineCreateInfo* pCreateInfos,
const VkAllocationCallbacks* pAllocator,
VkPipeline* pPipelines) {
return vgo_vkCreateGraphicsPipelines(device, pipelineCache, createInfoCount,
pCreateInfos, pAllocator, pPipelines);
}
VkResult callVkCreateComputePipelines(
VkDevice device,
VkPipelineCache pipelineCache,
uint32_t createInfoCount,
const VkComputePipelineCreateInfo* pCreateInfos,
const VkAllocationCallbacks* pAllocator,
VkPipeline* pPipelines) {
return vgo_vkCreateComputePipelines(device, pipelineCache, createInfoCount,
pCreateInfos, pAllocator, pPipelines);
}
void callVkDestroyPipeline(
VkDevice device,
VkPipeline pipeline,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyPipeline(device, pipeline, pAllocator);
}
VkResult callVkCreatePipelineLayout(
VkDevice device,
const VkPipelineLayoutCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkPipelineLayout* pPipelineLayout) {
return vgo_vkCreatePipelineLayout(device, pCreateInfo, pAllocator, pPipelineLayout);
}
void callVkDestroyPipelineLayout(
VkDevice device,
VkPipelineLayout pipelineLayout,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyPipelineLayout(device, pipelineLayout, pAllocator);
}
VkResult callVkCreateSampler(
VkDevice device,
const VkSamplerCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSampler* pSampler) {
return vgo_vkCreateSampler(device, pCreateInfo, pAllocator, pSampler);
}
void callVkDestroySampler(
VkDevice device,
VkSampler sampler,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroySampler(device, sampler, pAllocator);
}
VkResult callVkCreateDescriptorSetLayout(
VkDevice device,
const VkDescriptorSetLayoutCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkDescriptorSetLayout* pSetLayout) {
return vgo_vkCreateDescriptorSetLayout(device, pCreateInfo, pAllocator, pSetLayout);
}
void callVkDestroyDescriptorSetLayout(
VkDevice device,
VkDescriptorSetLayout descriptorSetLayout,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyDescriptorSetLayout(device, descriptorSetLayout, pAllocator);
}
VkResult callVkCreateDescriptorPool(
VkDevice device,
const VkDescriptorPoolCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkDescriptorPool* pDescriptorPool) {
return vgo_vkCreateDescriptorPool(device, pCreateInfo, pAllocator, pDescriptorPool);
}
void callVkDestroyDescriptorPool(
VkDevice device,
VkDescriptorPool descriptorPool,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyDescriptorPool(device, descriptorPool, pAllocator);
}
VkResult callVkResetDescriptorPool(
VkDevice device,
VkDescriptorPool descriptorPool,
VkDescriptorPoolResetFlags flags) {
return vgo_vkResetDescriptorPool(device, descriptorPool, flags);
}
VkResult callVkAllocateDescriptorSets(
VkDevice device,
const VkDescriptorSetAllocateInfo* pAllocateInfo,
VkDescriptorSet* pDescriptorSets) {
return vgo_vkAllocateDescriptorSets(device, pAllocateInfo, pDescriptorSets);
}
VkResult callVkFreeDescriptorSets(
VkDevice device,
VkDescriptorPool descriptorPool,
uint32_t descriptorSetCount,
const VkDescriptorSet* pDescriptorSets) {
return vgo_vkFreeDescriptorSets(device, descriptorPool, descriptorSetCount, pDescriptorSets);
}
void callVkUpdateDescriptorSets(
VkDevice device,
uint32_t descriptorWriteCount,
const VkWriteDescriptorSet* pDescriptorWrites,
uint32_t descriptorCopyCount,
const VkCopyDescriptorSet* pDescriptorCopies) {
vgo_vkUpdateDescriptorSets(device, descriptorWriteCount, pDescriptorWrites,
descriptorCopyCount, pDescriptorCopies);
}
VkResult callVkCreateFramebuffer(
VkDevice device,
const VkFramebufferCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkFramebuffer* pFramebuffer) {
return vgo_vkCreateFramebuffer(device, pCreateInfo, pAllocator, pFramebuffer);
}
void callVkDestroyFramebuffer(
VkDevice device,
VkFramebuffer framebuffer,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyFramebuffer(device, framebuffer, pAllocator);
}
VkResult callVkCreateRenderPass(
VkDevice device,
const VkRenderPassCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkRenderPass* pRenderPass) {
return vgo_vkCreateRenderPass(device, pCreateInfo, pAllocator, pRenderPass);
}
void callVkDestroyRenderPass(
VkDevice device,
VkRenderPass renderPass,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyRenderPass(device, renderPass, pAllocator);
}
void callVkGetRenderAreaGranularity(
VkDevice device,
VkRenderPass renderPass,
VkExtent2D* pGranularity) {
vgo_vkGetRenderAreaGranularity(device, renderPass, pGranularity);
}
VkResult callVkCreateCommandPool(
VkDevice device,
const VkCommandPoolCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkCommandPool* pCommandPool) {
return vgo_vkCreateCommandPool(device, pCreateInfo, pAllocator, pCommandPool);
}
void callVkDestroyCommandPool(
VkDevice device,
VkCommandPool commandPool,
const VkAllocationCallbacks* pAllocator) {
vgo_vkDestroyCommandPool(device, commandPool, pAllocator);
}
VkResult callVkResetCommandPool(
VkDevice device,
VkCommandPool commandPool,
VkCommandPoolResetFlags flags) {
return vgo_vkResetCommandPool(device, commandPool, flags);
}
VkResult callVkAllocateCommandBuffers(
VkDevice device,
const VkCommandBufferAllocateInfo* pAllocateInfo,
VkCommandBuffer* pCommandBuffers) {
return vgo_vkAllocateCommandBuffers(device, pAllocateInfo, pCommandBuffers);
}
void callVkFreeCommandBuffers(
VkDevice device,
VkCommandPool commandPool,
uint32_t commandBufferCount,
const VkCommandBuffer* pCommandBuffers) {
vgo_vkFreeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers);
}
VkResult callVkBeginCommandBuffer(
VkCommandBuffer commandBuffer,
const VkCommandBufferBeginInfo* pBeginInfo) {
return vgo_vkBeginCommandBuffer(commandBuffer, pBeginInfo);
}
VkResult callVkEndCommandBuffer(
VkCommandBuffer commandBuffer) {
return vgo_vkEndCommandBuffer(commandBuffer);
}
VkResult callVkResetCommandBuffer(
VkCommandBuffer commandBuffer,
VkCommandBufferResetFlags flags) {
return vgo_vkResetCommandBuffer(commandBuffer, flags);
}
void callVkCmdBindPipeline(
VkCommandBuffer commandBuffer,
VkPipelineBindPoint pipelineBindPoint,
VkPipeline pipeline) {
vgo_vkCmdBindPipeline(commandBuffer, pipelineBindPoint, pipeline);
}
void callVkCmdSetViewport(
VkCommandBuffer commandBuffer,
uint32_t firstViewport,
uint32_t viewportCount,
const VkViewport* pViewports) {
vgo_vkCmdSetViewport(commandBuffer, firstViewport, viewportCount, pViewports);
}
void callVkCmdSetScissor(
VkCommandBuffer commandBuffer,
uint32_t firstScissor,
uint32_t scissorCount,
const VkRect2D* pScissors) {
vgo_vkCmdSetScissor(commandBuffer, firstScissor, scissorCount, pScissors);
}
void callVkCmdSetLineWidth(
VkCommandBuffer commandBuffer,
float lineWidth) {
vgo_vkCmdSetLineWidth(commandBuffer, lineWidth);
}
void callVkCmdSetDepthBias(
VkCommandBuffer commandBuffer,
float depthBiasConstantFactor,
float depthBiasClamp,
float depthBiasSlopeFactor) {
vgo_vkCmdSetDepthBias(commandBuffer, depthBiasConstantFactor,
depthBiasClamp, depthBiasSlopeFactor);
}
void callVkCmdSetBlendConstants(
VkCommandBuffer commandBuffer,
const float blendConstants[4]) {
vgo_vkCmdSetBlendConstants(commandBuffer, blendConstants);
}
void callVkCmdSetDepthBounds(
VkCommandBuffer commandBuffer,
float minDepthBounds,
float maxDepthBounds) {
vgo_vkCmdSetDepthBounds(commandBuffer, minDepthBounds, maxDepthBounds);
}
void callVkCmdSetStencilCompareMask(
VkCommandBuffer commandBuffer,
VkStencilFaceFlags faceMask,
uint32_t compareMask) {
vgo_vkCmdSetStencilCompareMask(commandBuffer, faceMask, compareMask);
}
void callVkCmdSetStencilWriteMask(
VkCommandBuffer commandBuffer,
VkStencilFaceFlags faceMask,
uint32_t writeMask) {
vgo_vkCmdSetStencilWriteMask(commandBuffer, faceMask, writeMask);
}
void callVkCmdSetStencilReference(
VkCommandBuffer commandBuffer,
VkStencilFaceFlags faceMask,
uint32_t reference) {
vgo_vkCmdSetStencilReference(commandBuffer, faceMask, reference);
}
void callVkCmdBindDescriptorSets(
VkCommandBuffer commandBuffer,
VkPipelineBindPoint pipelineBindPoint,
VkPipelineLayout layout,
uint32_t firstSet,
uint32_t descriptorSetCount,
const VkDescriptorSet* pDescriptorSets,
uint32_t dynamicOffsetCount,
const uint32_t* pDynamicOffsets) {
vgo_vkCmdBindDescriptorSets(commandBuffer, pipelineBindPoint, layout,
firstSet, descriptorSetCount, pDescriptorSets,
dynamicOffsetCount, pDynamicOffsets);
}
void callVkCmdBindIndexBuffer(
VkCommandBuffer commandBuffer,
VkBuffer buffer,
VkDeviceSize offset,
VkIndexType indexType) {
vgo_vkCmdBindIndexBuffer(commandBuffer, buffer, offset, indexType);
}
void callVkCmdBindVertexBuffers(
VkCommandBuffer commandBuffer,
uint32_t firstBinding,
uint32_t bindingCount,
const VkBuffer* pBuffers,
const VkDeviceSize* pOffsets) {
vgo_vkCmdBindVertexBuffers(commandBuffer, firstBinding, bindingCount, pBuffers, pOffsets);
}
void callVkCmdDraw(
VkCommandBuffer commandBuffer,
uint32_t vertexCount,
uint32_t instanceCount,
uint32_t firstVertex,
uint32_t firstInstance) {
vgo_vkCmdDraw(commandBuffer, vertexCount, instanceCount, firstVertex, firstInstance);
}
void callVkCmdDrawIndexed(
VkCommandBuffer commandBuffer,
uint32_t indexCount,
uint32_t instanceCount,
uint32_t firstIndex,
int32_t vertexOffset,
uint32_t firstInstance) {
vgo_vkCmdDrawIndexed(commandBuffer, indexCount, instanceCount,
firstIndex, vertexOffset, firstInstance);
}
void callVkCmdDrawIndirect(
VkCommandBuffer commandBuffer,
VkBuffer buffer,
VkDeviceSize offset,
uint32_t drawCount,
uint32_t stride) {
vgo_vkCmdDrawIndirect(commandBuffer, buffer, offset, drawCount, stride);
}
void callVkCmdDrawIndexedIndirect(
VkCommandBuffer commandBuffer,
VkBuffer buffer,
VkDeviceSize offset,
uint32_t drawCount,
uint32_t stride) {
vgo_vkCmdDrawIndexedIndirect(commandBuffer, buffer, offset, drawCount, stride);
}
void callVkCmdDispatch(
VkCommandBuffer commandBuffer,
uint32_t x,
uint32_t y,
uint32_t z) {
vgo_vkCmdDispatch(commandBuffer, x, y, z);
}
void callVkCmdDispatchIndirect(
VkCommandBuffer commandBuffer,
VkBuffer buffer,
VkDeviceSize offset) {
vgo_vkCmdDispatchIndirect(commandBuffer, buffer, offset);
}
void callVkCmdCopyBuffer(
VkCommandBuffer commandBuffer,
VkBuffer srcBuffer,
VkBuffer dstBuffer,
uint32_t regionCount,
const VkBufferCopy* pRegions) {
vgo_vkCmdCopyBuffer(commandBuffer, srcBuffer, dstBuffer, regionCount, pRegions);
}
void callVkCmdCopyImage(
VkCommandBuffer commandBuffer,
VkImage srcImage,
VkImageLayout srcImageLayout,
VkImage dstImage,
VkImageLayout dstImageLayout,
uint32_t regionCount,
const VkImageCopy* pRegions) {
vgo_vkCmdCopyImage(commandBuffer, srcImage, srcImageLayout,
dstImage, dstImageLayout, regionCount, pRegions);
}
void callVkCmdBlitImage(
VkCommandBuffer commandBuffer,
VkImage srcImage,
VkImageLayout srcImageLayout,
VkImage dstImage,
VkImageLayout dstImageLayout,
uint32_t regionCount,
const VkImageBlit* pRegions,
VkFilter filter) {
vgo_vkCmdBlitImage(commandBuffer, srcImage, srcImageLayout,
dstImage, dstImageLayout, regionCount, pRegions, filter);
}
void callVkCmdCopyBufferToImage(
VkCommandBuffer commandBuffer,
VkBuffer srcBuffer,
VkImage dstImage,
VkImageLayout dstImageLayout,
uint32_t regionCount,
const VkBufferImageCopy* pRegions) {
vgo_vkCmdCopyBufferToImage(commandBuffer, srcBuffer,
dstImage, dstImageLayout, regionCount, pRegions);
}
void callVkCmdCopyImageToBuffer(
VkCommandBuffer commandBuffer,
VkImage srcImage,
VkImageLayout srcImageLayout,
VkBuffer dstBuffer,
uint32_t regionCount,
const VkBufferImageCopy* pRegions) {
vgo_vkCmdCopyImageToBuffer(commandBuffer, srcImage, srcImageLayout,
dstBuffer, regionCount, pRegions);
}
void callVkCmdUpdateBuffer(
VkCommandBuffer commandBuffer,
VkBuffer dstBuffer,
VkDeviceSize dstOffset,
VkDeviceSize dataSize,
const uint32_t* pData) {
vgo_vkCmdUpdateBuffer(commandBuffer, dstBuffer, dstOffset, dataSize, pData);
}
void callVkCmdFillBuffer(
VkCommandBuffer commandBuffer,
VkBuffer dstBuffer,
VkDeviceSize dstOffset,
VkDeviceSize size,
uint32_t data) {
vgo_vkCmdFillBuffer(commandBuffer, dstBuffer, dstOffset, size, data);
}
void callVkCmdClearColorImage(
VkCommandBuffer commandBuffer,
VkImage image,
VkImageLayout imageLayout,
const VkClearColorValue* pColor,
uint32_t rangeCount,
const VkImageSubresourceRange* pRanges) {
vgo_vkCmdClearColorImage(commandBuffer, image, imageLayout, pColor, rangeCount, pRanges);
}
void callVkCmdClearDepthStencilImage(
VkCommandBuffer commandBuffer,
VkImage image,
VkImageLayout imageLayout,
const VkClearDepthStencilValue* pDepthStencil,
uint32_t rangeCount,
const VkImageSubresourceRange* pRanges) {
vgo_vkCmdClearDepthStencilImage(commandBuffer, image, imageLayout,
pDepthStencil, rangeCount, pRanges);
}
void callVkCmdClearAttachments(
VkCommandBuffer commandBuffer,
uint32_t attachmentCount,
const VkClearAttachment* pAttachments,
uint32_t rectCount,
const VkClearRect* pRects) {
vgo_vkCmdClearAttachments(commandBuffer, attachmentCount, pAttachments, rectCount, pRects);
}
void callVkCmdResolveImage(
VkCommandBuffer commandBuffer,
VkImage srcImage,
VkImageLayout srcImageLayout,
VkImage dstImage,
VkImageLayout dstImageLayout,
uint32_t regionCount,
const VkImageResolve* pRegions) {
vgo_vkCmdResolveImage(commandBuffer, srcImage, srcImageLayout,
dstImage, dstImageLayout, regionCount, pRegions);
}
void callVkCmdSetEvent(
VkCommandBuffer commandBuffer,
VkEvent event,
VkPipelineStageFlags stageMask) {
vgo_vkCmdSetEvent(commandBuffer, event, stageMask);
}
void callVkCmdResetEvent(
VkCommandBuffer commandBuffer,
VkEvent event,
VkPipelineStageFlags stageMask) {
vgo_vkCmdResetEvent(commandBuffer, event, stageMask);
}
void callVkCmdWaitEvents(
VkCommandBuffer commandBuffer,
uint32_t eventCount,
const VkEvent* pEvents,
VkPipelineStageFlags srcStageMask,
VkPipelineStageFlags dstStageMask,
uint32_t memoryBarrierCount,
const VkMemoryBarrier* pMemoryBarriers,
uint32_t bufferMemoryBarrierCount,
const VkBufferMemoryBarrier* pBufferMemoryBarriers,
uint32_t imageMemoryBarrierCount,
const VkImageMemoryBarrier* pImageMemoryBarriers) {
vgo_vkCmdWaitEvents(commandBuffer, eventCount, pEvents, srcStageMask, dstStageMask,
memoryBarrierCount, pMemoryBarriers,
bufferMemoryBarrierCount, pBufferMemoryBarriers,
imageMemoryBarrierCount, pImageMemoryBarriers);
}
void callVkCmdPipelineBarrier(
VkCommandBuffer commandBuffer,
VkPipelineStageFlags srcStageMask,
VkPipelineStageFlags dstStageMask,
VkDependencyFlags dependencyFlags,
uint32_t memoryBarrierCount,
const VkMemoryBarrier* pMemoryBarriers,
uint32_t bufferMemoryBarrierCount,