mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-13 13:53:43 +00:00
Minor alignment change in dxcapi.odin
This commit is contained in:
36
vendor/directx/dxc/dxcapi.odin
vendored
36
vendor/directx/dxc/dxcapi.odin
vendored
@@ -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,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user