-
Notifications
You must be signed in to change notification settings - Fork 45
/
webgpu.yml
5079 lines (5064 loc) · 125 KB
/
webgpu.yml
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
copyright: |
Copyright 2019-2023 WebGPU-Native developers
SPDX-License-Identifier: BSD-3-Clause
name: webgpu
enum_prefix: '0x0000'
doc: |
**Important:** *This documentation is a Work In Progress.*
This is the home of WebGPU C API specification. We define here the standard
`webgpu.h` header that all implementations should provide.
For all details where behavior is not otherwise specified, `webgpu.h` has
the same behavior as the WebGPU specification for JavaScript on the Web.
The WebIDL-based Web specification is mapped into C as faithfully (and
bidirectionally) as practical/possible.
The working draft of WebGPU can be found at <https://www.w3.org/TR/webgpu/>.
constants:
- name: array_layer_count_undefined
value: uint32_max
doc: |
TODO
- name: copy_stride_undefined
value: uint32_max
doc: |
TODO
- name: depth_clear_value_undefined
value: nan
doc: |
Value to be assigned to member depthClearValue of @ref WGPURenderPassDepthStencilAttachment
to mean that it is not defined.
- name: depth_slice_undefined
value: uint32_max
doc: |
TODO
- name: limit_u32_undefined
value: uint32_max
doc: |
TODO
- name: limit_u64_undefined
value: uint64_max
doc: |
TODO
- name: mip_level_count_undefined
value: uint32_max
doc: |
TODO
- name: query_set_index_undefined
value: uint32_max
doc: |
TODO
- name: whole_map_size
value: usize_max
doc: |
TODO
- name: whole_size
value: uint64_max
doc: |
TODO
typedefs: []
enums:
- name: adapter_type
doc: |
TODO
entries:
- null
- name: discrete_GPU
doc: |
TODO
- name: integrated_GPU
doc: |
TODO
- name: CPU
doc: |
TODO
- name: unknown
doc: |
TODO
- name: address_mode
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: clamp_to_edge
doc: |
TODO
- name: repeat
doc: |
TODO
- name: mirror_repeat
doc: |
TODO
- name: backend_type
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: "null"
doc: |
TODO
- name: WebGPU
doc: |
TODO
- name: D3D11
doc: |
TODO
- name: D3D12
doc: |
TODO
- name: metal
doc: |
TODO
- name: vulkan
doc: |
TODO
- name: openGL
doc: |
TODO
- name: openGLES
doc: |
TODO
- name: blend_factor
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: zero
doc: |
TODO
- name: one
doc: |
TODO
- name: src
doc: |
TODO
- name: one_minus_src
doc: |
TODO
- name: src_alpha
doc: |
TODO
- name: one_minus_src_alpha
doc: |
TODO
- name: dst
doc: |
TODO
- name: one_minus_dst
doc: |
TODO
- name: dst_alpha
doc: |
TODO
- name: one_minus_dst_alpha
doc: |
TODO
- name: src_alpha_saturated
doc: |
TODO
- name: constant
doc: |
TODO
- name: one_minus_constant
doc: |
TODO
- name: src1
doc: |
TODO
- name: one_minus_src1
doc: |
TODO
- name: src1_alpha
doc: |
TODO
- name: one_minus_src1_alpha
doc: |
TODO
- name: blend_operation
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: add
doc: |
TODO
- name: subtract
doc: |
TODO
- name: reverse_subtract
doc: |
TODO
- name: min
doc: |
TODO
- name: max
doc: |
TODO
- name: buffer_binding_type
doc: |
TODO
entries:
- name: binding_not_used
doc: |
Indicates that this @ref WGPUBufferBindingLayout member of
its parent @ref WGPUBindGroupLayoutEntry is not used.
(See also @ref SentinelValues.)
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: uniform
doc: |
TODO
- name: storage
doc: |
TODO
- name: read_only_storage
doc: |
TODO
- name: buffer_map_state
doc: |
TODO
entries:
- null
- name: unmapped
doc: |
TODO
- name: pending
doc: |
TODO
- name: mapped
doc: |
TODO
- name: callback_mode
doc: The callback mode controls how a callback for an asynchronous operation may be fired. See @ref Asynchronous-Operations for how these are used.
entries:
- null
- name: wait_any_only
doc: |
Callbacks created with `WGPUCallbackMode_WaitAnyOnly`:
- fire when the asynchronous operation's future is passed to a call to @ref wgpuInstanceWaitAny
AND the operation has already completed or it completes inside the call to @ref wgpuInstanceWaitAny.
- name: allow_process_events
doc: |
Callbacks created with `WGPUCallbackMode_AllowProcessEvents`:
- fire for the same reasons as callbacks created with `WGPUCallbackMode_WaitAnyOnly`
- fire inside a call to @ref wgpuInstanceProcessEvents if the asynchronous operation is complete.
- name: allow_spontaneous
doc: |
Callbacks created with `WGPUCallbackMode_AllowSpontaneous`:
- fire for the same reasons as callbacks created with `WGPUCallbackMode_AllowProcessEvents`
- **may** fire spontaneously on an arbitrary or application thread, when the WebGPU implementations discovers that the asynchronous operation is complete.
Implementations _should_ fire spontaneous callbacks as soon as possible.
@note Because spontaneous callbacks may fire at an arbitrary time on an arbitrary thread, applications should take extra care when acquiring locks or mutating state inside the callback. It undefined behavior to re-entrantly call into the webgpu.h API if the callback fires while inside the callstack of another webgpu.h function that is not `wgpuInstanceWaitAny` or `wgpuInstanceProcessEvents`.
- name: compare_function
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: never
doc: |
TODO
- name: less
doc: |
TODO
- name: equal
doc: |
TODO
- name: less_equal
doc: |
TODO
- name: greater
doc: |
TODO
- name: not_equal
doc: |
TODO
- name: greater_equal
doc: |
TODO
- name: always
doc: |
TODO
- name: compilation_info_request_status
doc: |
TODO
entries:
- null
- name: success
doc: |
TODO
- name: instance_dropped
doc: |
TODO
- name: compilation_message_type
doc: |
TODO
entries:
- null
- name: error
doc: |
TODO
- name: warning
doc: |
TODO
- name: info
doc: |
TODO
- name: composite_alpha_mode
doc: Describes how frames are composited with other contents on the screen when @ref wgpuSurfacePresent is called.
entries:
- name: auto
doc: Lets the WebGPU implementation choose the best mode (supported, and with the best performance) between @ref WGPUCompositeAlphaMode_Opaque or @ref WGPUCompositeAlphaMode_Inherit.
- name: opaque
doc: The alpha component of the image is ignored and teated as if it is always 1.0.
- name: premultiplied
doc: The alpha component is respected and non-alpha components are assumed to be already multiplied with the alpha component. For example, (0.5, 0, 0, 0.5) is semi-transparent bright red.
- name: unpremultiplied
doc: The alpha component is respected and non-alpha components are assumed to NOT be already multiplied with the alpha component. For example, (1.0, 0, 0, 0.5) is semi-transparent bright red.
- name: inherit
doc: The handling of the alpha component is unknown to WebGPU and should be handled by the application using system-specific APIs. This mode may be unavailable (for example on Wasm).
- name: create_pipeline_async_status
doc: |
TODO
entries:
- null
- name: success
doc: |
TODO
- name: instance_dropped
doc: |
TODO
- name: validation_error
doc: |
TODO
- name: internal_error
doc: |
TODO
- name: cull_mode
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: none
doc: |
TODO
- name: front
doc: |
TODO
- name: back
doc: |
TODO
- name: device_lost_reason
doc: |
TODO
entries:
- null
- name: unknown
doc: |
TODO
- name: destroyed
doc: |
TODO
- name: instance_dropped
doc: |
TODO
- name: failed_creation
doc: |
TODO
- name: error_filter
doc: |
TODO
entries:
- null
- name: validation
doc: |
TODO
- name: out_of_memory
doc: |
TODO
- name: internal
doc: |
TODO
- name: error_type
doc: |
TODO
entries:
- null
- name: no_error
doc: |
TODO
- name: validation
doc: |
TODO
- name: out_of_memory
doc: |
TODO
- name: internal
doc: |
TODO
- name: unknown
doc: |
TODO
- name: feature_level
doc: |
See @ref WGPURequestAdapterOptions::featureLevel.
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: compatibility
doc: |
"Compatibility" profile which can be supported on OpenGL ES 3.1 and D3D11.
- name: core
doc: |
"Core" profile which can be supported on Vulkan/Metal/D3D12 (at least).
- name: feature_name
doc: |
TODO
entries:
- name: undefined
doc: |
TODO
- name: depth_clip_control
doc: |
TODO
- name: depth32_float_stencil8
doc: |
TODO
- name: timestamp_query
doc: |
TODO
- name: texture_compression_BC
doc: |
TODO
- name: texture_compression_BC_sliced_3D
doc: |
TODO
- name: texture_compression_ETC2
doc: |
TODO
- name: texture_compression_ASTC
doc: |
TODO
- name: texture_compression_ASTC_sliced_3D
doc: |
TODO
- name: indirect_first_instance
doc: |
TODO
- name: shader_f16
doc: |
TODO
- name: RG11B10_ufloat_renderable
doc: |
TODO
- name: BGRA8_unorm_storage
doc: |
TODO
- name: float32_filterable
doc: |
TODO
- name: float32_blendable
doc: |
TODO
- name: clip_distances
doc: |
TODO
- name: dual_source_blending
doc: |
TODO
- name: filter_mode
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: nearest
doc: |
TODO
- name: linear
doc: |
TODO
- name: front_face
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: CCW
doc: |
TODO
- name: CW
doc: |
TODO
- name: index_format
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: uint16
doc: |
TODO
- name: uint32
doc: |
TODO
- name: load_op
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: load
doc: |
TODO
- name: clear
doc: |
TODO
- name: map_async_status
doc: |
TODO
entries:
- null
- name: success
doc: |
TODO
- name: instance_dropped
doc: |
TODO
- name: error
doc: |
TODO
- name: aborted
doc: |
TODO
- name: mipmap_filter_mode
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: nearest
doc: |
TODO
- name: linear
doc: |
TODO
- name: optional_bool
doc: |
TODO
entries:
- name: "false"
doc: |
TODO
- name: "true"
doc: |
TODO
- name: undefined
doc: |
TODO
- name: pop_error_scope_status
doc: |
TODO
entries:
- null
- name: success
doc: |
The error scope stack was successfully popped and a result was reported.
- name: instance_dropped
doc: |
TODO
- name: error
doc: |
The error scope stack could not be popped, because it was empty.
- name: power_preference
doc: |
TODO
entries:
- name: undefined
doc: No preference. (See also @ref SentinelValues.)
- name: low_power
doc: |
TODO
- name: high_performance
doc: |
TODO
- name: predefined_color_space
doc: |
TODO
entries:
- null
- name: SRGB
doc: |
TODO
- name: display_p3
doc: |
TODO
- name: present_mode
doc: Describes when and in which order frames are presented on the screen when @ref wgpuSurfacePresent is called.
entries:
- name: undefined
doc: |
Present mode is not specified. Use the default.
- name: fifo
doc: |
The presentation of the image to the user waits for the next vertical blanking period to update in a first-in, first-out manner.
Tearing cannot be observed and frame-loop will be limited to the display's refresh rate.
This is the only mode that's always available.
- name: fifo_relaxed
doc: |
The presentation of the image to the user tries to wait for the next vertical blanking period but may decide to not wait if a frame is presented late.
Tearing can sometimes be observed but late-frame don't produce a full-frame stutter in the presentation.
This is still a first-in, first-out mechanism so a frame-loop will be limited to the display's refresh rate.
- name: immediate
doc: |
The presentation of the image to the user is updated immediately without waiting for a vertical blank.
Tearing can be observed but latency is minimized.
- name: mailbox
doc: |
The presentation of the image to the user waits for the next vertical blanking period to update to the latest provided image.
Tearing cannot be observed and a frame-loop is not limited to the display's refresh rate.
- name: primitive_topology
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: point_list
doc: |
TODO
- name: line_list
doc: |
TODO
- name: line_strip
doc: |
TODO
- name: triangle_list
doc: |
TODO
- name: triangle_strip
doc: |
TODO
- name: query_type
doc: |
TODO
entries:
- null
- name: occlusion
doc: |
TODO
- name: timestamp
doc: |
TODO
- name: queue_work_done_status
doc: |
TODO
entries:
- null
- name: success
doc: |
TODO
- name: instance_dropped
doc: |
TODO
- name: request_adapter_status
doc: |
TODO
entries:
- null
- name: success
doc: |
TODO
- name: instance_dropped
doc: |
TODO
- name: unavailable
doc: |
TODO
- name: error
doc: |
TODO
- name: request_device_status
doc: |
TODO
entries:
- null
- name: success
doc: |
TODO
- name: instance_dropped
doc: |
TODO
- name: error
doc: |
TODO
- name: s_type
doc: |
TODO
entries:
- null
- name: shader_source_SPIRV
doc: |
TODO
- name: shader_source_WGSL
doc: |
TODO
- name: render_pass_max_draw_count
doc: |
TODO
# TODO(#214): Move all of the surface sources into block 0x0001
- name: surface_source_metal_layer
doc: |
TODO
- name: surface_source_windows_HWND
doc: |
TODO
- name: surface_source_xlib_window
doc: |
TODO
- name: surface_source_wayland_surface
doc: |
TODO
- name: surface_source_android_native_window
doc: |
TODO
- name: surface_source_XCB_window
doc: |
TODO
- name: surface_color_management
doc: |
TODO
- name: sampler_binding_type
doc: |
TODO
entries:
- name: binding_not_used
doc: |
Indicates that this @ref WGPUSamplerBindingLayout member of
its parent @ref WGPUBindGroupLayoutEntry is not used.
(See also @ref SentinelValues.)
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: filtering
doc: |
TODO
- name: non_filtering
doc: |
TODO
- name: comparison
doc: |
TODO
- name: status
doc: |
Status code returned (synchronously) from many operations. Generally
indicates an invalid input like an unknown enum value or @ref OutStructChainError.
Read the function's documentation for specific error conditions.
entries:
- null
- name: success
doc: ""
- name: error
doc: ""
- name: stencil_operation
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: keep
doc: |
TODO
- name: zero
doc: |
TODO
- name: replace
doc: |
TODO
- name: invert
doc: |
TODO
- name: increment_clamp
doc: |
TODO
- name: decrement_clamp
doc: |
TODO
- name: increment_wrap
doc: |
TODO
- name: decrement_wrap
doc: |
TODO
- name: storage_texture_access
doc: |
TODO
entries:
- name: binding_not_used
doc: |
Indicates that this @ref WGPUStorageTextureBindingLayout member of
its parent @ref WGPUBindGroupLayoutEntry is not used.
(See also @ref SentinelValues.)
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: write_only
doc: |
TODO
- name: read_only
doc: |
TODO
- name: read_write
doc: |
TODO
- name: store_op
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: store
doc: |
TODO
- name: discard
doc: |
TODO
- name: surface_get_current_texture_status
doc: The status enum for @ref wgpuSurfaceGetCurrentTexture.
entries:
- null
- name: success_optimal
doc: Yay! Everything is good and we can render this frame.
- name: success_suboptimal
doc: Still OK - the surface can present the frame, but in a suboptimal way. The surface may need reconfiguration.
- name: timeout
doc: Some operation timed out while trying to acquire the frame.
- name: outdated
doc: The surface is too different to be used, compared to when it was originally created.
- name: lost
doc: The connection to whatever owns the surface was lost, or generally needs to be fully reinitialized.
- name: error
doc: There was some deterministic error (for example, the surface is not configured, or there was an @ref OutStructChainError). Should produce @ref ImplementationDefinedLogging containing details.
- name: texture_aspect
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: all
doc: |
TODO
- name: stencil_only
doc: |
TODO
- name: depth_only
doc: |
TODO
- name: texture_dimension
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: 1D
doc: |
TODO
- name: 2D
doc: |
TODO
- name: 3D
doc: |
TODO
- name: texture_format
doc: |
TODO
entries:
- name: undefined
doc: Indicates no value is passed for this argument. See @ref SentinelValues.
- name: R8_unorm
doc: |
TODO
- name: R8_snorm
doc: |
TODO
- name: R8_uint
doc: |
TODO
- name: R8_sint
doc: |
TODO
- name: R16_uint
doc: |
TODO
- name: R16_sint
doc: |
TODO
- name: R16_float
doc: |
TODO
- name: RG8_unorm
doc: |
TODO
- name: RG8_snorm
doc: |
TODO
- name: RG8_uint
doc: |
TODO
- name: RG8_sint
doc: |
TODO
- name: R32_float
doc: |
TODO
- name: R32_uint
doc: |
TODO
- name: R32_sint
doc: |
TODO
- name: RG16_uint
doc: |
TODO
- name: RG16_sint
doc: |
TODO
- name: RG16_float
doc: |
TODO
- name: RGBA8_unorm
doc: |
TODO
- name: RGBA8_unorm_srgb
doc: |
TODO
- name: RGBA8_snorm
doc: |
TODO
- name: RGBA8_uint
doc: |
TODO
- name: RGBA8_sint
doc: |
TODO
- name: BGRA8_unorm
doc: |
TODO
- name: BGRA8_unorm_srgb
doc: |
TODO
- name: RGB10_A2_uint
doc: |
TODO
- name: RGB10_A2_unorm
doc: |
TODO
- name: RG11_B10_ufloat
doc: |
TODO
- name: RGB9_E5_ufloat
doc: |
TODO
- name: RG32_float
doc: |
TODO
- name: RG32_uint
doc: |
TODO
- name: RG32_sint
doc: |
TODO
- name: RGBA16_uint
doc: |
TODO
- name: RGBA16_sint
doc: |
TODO
- name: RGBA16_float
doc: |
TODO
- name: RGBA32_float
doc: |
TODO
- name: RGBA32_uint
doc: |
TODO
- name: RGBA32_sint
doc: |
TODO
- name: stencil8
doc: |
TODO
- name: depth16_unorm
doc: |
TODO
- name: depth24_plus