diff options
| author | nowheredevel <nowheredevel@gmail.com> | 2026-01-22 22:46:08 -0500 |
|---|---|---|
| committer | nowheredevel <nowheredevel@gmail.com> | 2026-01-22 22:46:08 -0500 |
| commit | da9b1dfcc6a607d928b4346ff4305fc5bb959018 (patch) | |
| tree | 0c61d7a905b85633a074ae2a75a2d8e9e0e14389 /vendor | |
| parent | ce71227b6bba4bbe74d53c681264a9cba974403a (diff) | |
Implement missing device properties function
Diffstat (limited to 'vendor')
| -rw-r--r-- | vendor/sdl3/sdl3_gpu.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/sdl3/sdl3_gpu.odin b/vendor/sdl3/sdl3_gpu.odin index 85f05db83..551b23947 100644 --- a/vendor/sdl3/sdl3_gpu.odin +++ b/vendor/sdl3/sdl3_gpu.odin @@ -824,6 +824,7 @@ foreign lib { GetGPUDriver :: proc(index: c.int) -> cstring --- GetGPUDeviceDriver :: proc(device: ^GPUDevice) -> cstring --- GetGPUShaderFormats :: proc(device: ^GPUDevice) -> GPUShaderFormat --- + GetGPUDeviceProperties :: proc(device: ^GPUDevice) -> PropertiesID --- CreateGPUComputePipeline :: proc(device: ^GPUDevice, #by_ptr createinfo: GPUComputePipelineCreateInfo) -> ^GPUComputePipeline --- CreateGPUGraphicsPipeline :: proc(device: ^GPUDevice, #by_ptr createinfo: GPUGraphicsPipelineCreateInfo) -> ^GPUGraphicsPipeline --- CreateGPUSampler :: proc(device: ^GPUDevice, #by_ptr createinfo: GPUSamplerCreateInfo) -> ^GPUSampler --- |