Skip to content

Commit e8a67df

Browse files
committed
Fixed argument 'params' of 'getPointerv{KHR}'
1 parent 56ba2a8 commit e8a67df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bindings.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3317,7 +3317,7 @@ pub var getObjectPtrLabel: *const fn (
33173317
) callconv(.c) void = undefined;
33183318
pub var getPointerv: *const fn (
33193319
pname: Enum,
3320-
params: *anyopaque,
3320+
params: [*c]?*anyopaque,
33213321
) callconv(.c) void = undefined;
33223322
//--------------------------------------------------------------------------------------------------
33233323
//
@@ -4391,7 +4391,7 @@ pub var getDebugMessageLogKHR: *const fn (
43914391
) callconv(.c) Uint = undefined;
43924392
pub var getPointervKHR: *const fn (
43934393
pname: Enum,
4394-
params: *anyopaque,
4394+
params: [*c]?*anyopaque,
43954395
) callconv(.c) void = undefined;
43964396
pub var pushDebugGroupKHR: *const fn (
43974397
source: Enum,

0 commit comments

Comments
 (0)