gpu: convert *opaque -> opaque for RenderPipeline

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-29 22:58:12 -07:00 committed by Stephen Gutekanst
parent 508ba37e7e
commit 397f2eb1c9
4 changed files with 7 additions and 7 deletions

View file

@ -89,7 +89,7 @@ pub const Device = opaque {
return Impl.deviceCreateRenderBundleEncoder(device, descriptor);
}
pub inline fn createRenderPipeline(device: *Device, descriptor: *const RenderPipelineDescriptor) RenderPipeline {
pub inline fn createRenderPipeline(device: *Device, descriptor: *const RenderPipelineDescriptor) *RenderPipeline {
return Impl.deviceCreateRenderPipeline(device, descriptor);
}