aboutsummaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-08 00:18:11 +0200
committerGitHub <noreply@github.com>2025-06-08 00:18:11 +0200
commit00b67831d11b2b0f4db904af9c58be4a2cd4470c (patch)
tree288a93526d1b825659ecc4972aed63ce712f4e07 /vendor
parent6d7f5baaf822f358e70c2f26edf243b07e985a8a (diff)
parent4a6c6cd3981db94dffffed315bb31f4c25443f39 (diff)
Merge pull request #5297 from karl-zylinski/dxc-binding-fixes
DXC: Fixed broken bindings of ICompiler and ICompiler2
Diffstat (limited to 'vendor')
-rw-r--r--vendor/directx/dxc/dxcapi.odin6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/directx/dxc/dxcapi.odin b/vendor/directx/dxc/dxcapi.odin
index 23dbc8f30..96a925ef9 100644
--- a/vendor/directx/dxc/dxcapi.odin
+++ b/vendor/directx/dxc/dxcapi.odin
@@ -194,7 +194,7 @@ ICompiler_VTable :: struct {
using iunknown_vtable: IUnknown_VTable,
Compile: proc "system" (
this: ^ICompiler,
- pSource: ^Buffer,
+ pSource: ^IBlob,
pSourceName: wstring,
pEntryPoint: wstring,
pTargetProfile: wstring,
@@ -206,7 +206,7 @@ ICompiler_VTable :: struct {
ppResult: ^^IOperationResult) -> HRESULT,
Preprocess: proc "system" (
this: ^ICompiler,
- pSource: ^Buffer,
+ pSource: ^IBlob,
pSourceName: wstring,
pArguments: [^]wstring,
argCount: u32,
@@ -227,7 +227,7 @@ ICompiler2_VTable :: struct {
using idxccompiler_vtable: ^ICompiler_VTable,
CompileWithDebug: proc "system" (
this: ^ICompiler2,
- pSource: ^Buffer,
+ pSource: ^IBlob,
pSourceName: wstring,
pEntryPoint: wstring,
pTargetProfile: wstring,