gpu: convert *opaque -> opaque for RenderBundle
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
0372525c91
commit
6692be5110
1 changed files with 2 additions and 2 deletions
|
|
@ -2,11 +2,11 @@ const ChainedStruct = @import("types.zig").ChainedStruct;
|
||||||
const Impl = @import("interface.zig").Impl;
|
const Impl = @import("interface.zig").Impl;
|
||||||
|
|
||||||
pub const RenderBundle = *opaque {
|
pub const RenderBundle = *opaque {
|
||||||
pub inline fn reference(render_bundle: RenderBundle) void {
|
pub inline fn reference(render_bundle: *RenderBundle) void {
|
||||||
Impl.renderBundleReference(render_bundle);
|
Impl.renderBundleReference(render_bundle);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub inline fn release(render_bundle: RenderBundle) void {
|
pub inline fn release(render_bundle: *RenderBundle) void {
|
||||||
Impl.renderBundleRelease(render_bundle);
|
Impl.renderBundleRelease(render_bundle);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue