Minor alignment change in dxcapi.odin

This commit is contained in:
gingerBill
2026-06-09 13:25:41 +01:00
parent 671a187600
commit d80720e30d

View File

@@ -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,
}