mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-01 20:28:15 +00:00
Fixed #2170
This commit is contained in:
Vendored
+7
-8
@@ -1242,11 +1242,10 @@ COLOR_WRITE_ENABLE_ALPHA :: COLOR_WRITE_ENABLE_MASK{.ALPHA}
|
|||||||
COLOR_WRITE_ENABLE_ALL :: COLOR_WRITE_ENABLE_MASK{.RED, .GREEN, .BLUE, .ALPHA}
|
COLOR_WRITE_ENABLE_ALL :: COLOR_WRITE_ENABLE_MASK{.RED, .GREEN, .BLUE, .ALPHA}
|
||||||
|
|
||||||
COLOR_WRITE_ENABLE :: enum i32 {
|
COLOR_WRITE_ENABLE :: enum i32 {
|
||||||
RED = 1,
|
RED = 0,
|
||||||
GREEN = 2,
|
GREEN = 1,
|
||||||
BLUE = 4,
|
BLUE = 2,
|
||||||
ALPHA = 8,
|
ALPHA = 3,
|
||||||
ALL = 15,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RENDER_TARGET_BLEND_DESC :: struct {
|
RENDER_TARGET_BLEND_DESC :: struct {
|
||||||
@@ -2401,7 +2400,7 @@ IDeviceContext_VTable :: struct {
|
|||||||
ClearRenderTargetView: proc "stdcall" (this: ^IDeviceContext, pRenderTargetView: ^IRenderTargetView, ColorRGBA: ^[4]f32),
|
ClearRenderTargetView: proc "stdcall" (this: ^IDeviceContext, pRenderTargetView: ^IRenderTargetView, ColorRGBA: ^[4]f32),
|
||||||
ClearUnorderedAccessViewUint: proc "stdcall" (this: ^IDeviceContext, pUnorderedAccessView: ^IUnorderedAccessView, Values: ^[4]u32),
|
ClearUnorderedAccessViewUint: proc "stdcall" (this: ^IDeviceContext, pUnorderedAccessView: ^IUnorderedAccessView, Values: ^[4]u32),
|
||||||
ClearUnorderedAccessViewFloat: proc "stdcall" (this: ^IDeviceContext, pUnorderedAccessView: ^IUnorderedAccessView, Values: ^[4]f32),
|
ClearUnorderedAccessViewFloat: proc "stdcall" (this: ^IDeviceContext, pUnorderedAccessView: ^IUnorderedAccessView, Values: ^[4]f32),
|
||||||
ClearDepthStencilView: proc "stdcall" (this: ^IDeviceContext, pDepthStencilView: ^IDepthStencilView, ClearFlags: CLEAR_FLAG, Depth: f32, Stencil: u8),
|
ClearDepthStencilView: proc "stdcall" (this: ^IDeviceContext, pDepthStencilView: ^IDepthStencilView, ClearFlags: CLEAR_FLAGS, Depth: f32, Stencil: u8),
|
||||||
GenerateMips: proc "stdcall" (this: ^IDeviceContext, pShaderResourceView: ^IShaderResourceView),
|
GenerateMips: proc "stdcall" (this: ^IDeviceContext, pShaderResourceView: ^IShaderResourceView),
|
||||||
SetResourceMinLOD: proc "stdcall" (this: ^IDeviceContext, pResource: ^IResource, MinLOD: f32),
|
SetResourceMinLOD: proc "stdcall" (this: ^IDeviceContext, pResource: ^IResource, MinLOD: f32),
|
||||||
GetResourceMinLOD: proc "stdcall" (this: ^IDeviceContext, pResource: ^IResource) -> f32,
|
GetResourceMinLOD: proc "stdcall" (this: ^IDeviceContext, pResource: ^IResource) -> f32,
|
||||||
@@ -3734,10 +3733,10 @@ MESSAGE_CATEGORY :: enum u32 {
|
|||||||
INFO_QUEUE_FILTER_DESC :: struct {
|
INFO_QUEUE_FILTER_DESC :: struct {
|
||||||
NumCategories: u32,
|
NumCategories: u32,
|
||||||
pCategoryList: ^MESSAGE_CATEGORY,
|
pCategoryList: ^MESSAGE_CATEGORY,
|
||||||
|
|
||||||
NumSeverities: u32,
|
NumSeverities: u32,
|
||||||
pSeverityList: ^MESSAGE_SEVERITY,
|
pSeverityList: ^MESSAGE_SEVERITY,
|
||||||
|
|
||||||
NumIDs: u32,
|
NumIDs: u32,
|
||||||
pIDList: ^MESSAGE_ID,
|
pIDList: ^MESSAGE_ID,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user