gpu: convert *opaque -> opaque for Instance

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-29 22:11:13 -07:00 committed by Stephen Gutekanst
parent d120c7092f
commit 223f10446a
2 changed files with 6 additions and 6 deletions

View file

@ -122,7 +122,7 @@ pub const RenderPassDescriptor = extern struct {
timestamp_writes: ?[*]const RenderPassTimestampWrite = null,
};
pub inline fn createInstance(descriptor: ?*const instance.InstanceDescriptor) ?instance.Instance {
pub inline fn createInstance(descriptor: ?*const instance.InstanceDescriptor) ?*instance.Instance {
return interface.Impl.createInstance(descriptor);
}