From d80720e30dc572ac61c148f0b1904c60c65ca2e2 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 9 Jun 2026 13:25:41 +0100 Subject: [PATCH] Minor alignment change in dxcapi.odin --- vendor/directx/dxc/dxcapi.odin | 36 +++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/vendor/directx/dxc/dxcapi.odin b/vendor/directx/dxc/dxcapi.odin index 326d3b3f3..0eb20dbfe 100644 --- a/vendor/directx/dxc/dxcapi.odin +++ b/vendor/directx/dxc/dxcapi.odin @@ -194,27 +194,27 @@ ICompiler :: struct #raw_union { ICompiler_VTable :: struct { using iunknown_vtable: IUnknown_VTable, Compile: proc "system" ( - this: ^ICompiler, - pSource: ^IBlob, - pSourceName: wstring, - pEntryPoint: wstring, - pTargetProfile: wstring, - pArguments: [^]wstring, - argCount: u32, - pDefines: [^]Define, - defineCount: u32, + this: ^ICompiler, + pSource: ^IBlob, + pSourceName: wstring, + pEntryPoint: wstring, + pTargetProfile: wstring, + pArguments: [^]wstring, + argCount: u32, + pDefines: [^]Define, + defineCount: u32, pIncludeHandler: ^IIncludeHandler, - ppResult: ^^IOperationResult) -> HRESULT, + ppResult: ^^IOperationResult) -> HRESULT, Preprocess: proc "system" ( - this: ^ICompiler, - pSource: ^IBlob, - pSourceName: wstring, - pArguments: [^]wstring, - argCount: u32, - pDefines: [^]Define, - defineCount: u32, + this: ^ICompiler, + pSource: ^IBlob, + pSourceName: wstring, + pArguments: [^]wstring, + argCount: u32, + pDefines: [^]Define, + defineCount: u32, pIncludeHandler: ^IIncludeHandler, - ppResult: ^^IOperationResult) -> HRESULT, + ppResult: ^^IOperationResult) -> HRESULT, Disassemble: proc "system" (this: ^ICompiler, pSource: ^Buffer, ppDisassembly: ^IBlobEncoding) -> HRESULT, }