mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-25 13:18:14 +00:00
Merge pull request #6557 from GloriousPtr/d3d12_fix
Fix D3D12_BARRIER_SUBRESOURCE_RANGE struct
This commit is contained in:
12
vendor/directx/d3d12/d3d12.odin
vendored
12
vendor/directx/d3d12/d3d12.odin
vendored
@@ -5458,12 +5458,12 @@ TEXTURE_BARRIER_FLAGS :: enum i32 {
|
||||
}
|
||||
|
||||
BARRIER_SUBRESOURCE_RANGE :: struct {
|
||||
IndexOrFirstMipLevel: uint,
|
||||
NumMipLevels: uint,
|
||||
FirstArraySlice: uint,
|
||||
NumArraySlices: uint,
|
||||
FirstPlane: uint,
|
||||
NumPlanes: uint,
|
||||
IndexOrFirstMipLevel: u32,
|
||||
NumMipLevels: u32,
|
||||
FirstArraySlice: u32,
|
||||
NumArraySlices: u32,
|
||||
FirstPlane: u32,
|
||||
NumPlanes: u32,
|
||||
}
|
||||
|
||||
GLOBAL_BARRIER :: struct {
|
||||
|
||||
Reference in New Issue
Block a user