gpu: convert *opaque -> opaque for QuerySet

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-29 22:44:53 -07:00 committed by Stephen Gutekanst
parent ca0fa7f045
commit c75d1d9e06
5 changed files with 13 additions and 13 deletions

View file

@ -3,28 +3,28 @@ const PipelineStatisticName = @import("types.zig").PipelineStatisticName;
const QueryType = @import("types.zig").QueryType;
const Impl = @import("interface.zig").Impl;
pub const QuerySet = *opaque {
pub inline fn destroy(query_set: QuerySet) void {
pub const QuerySet = opaque {
pub inline fn destroy(query_set: *QuerySet) void {
Impl.querySetDestroy(query_set);
}
pub inline fn getCount(query_set: QuerySet) u32 {
pub inline fn getCount(query_set: *QuerySet) u32 {
return Impl.querySetGetCount(query_set);
}
pub inline fn getType(query_set: QuerySet) QueryType {
pub inline fn getType(query_set: *QuerySet) QueryType {
return Impl.querySetGetType(query_set);
}
pub inline fn setLabel(query_set: QuerySet, label: [*:0]const u8) void {
pub inline fn setLabel(query_set: *QuerySet, label: [*:0]const u8) void {
Impl.querySetSetLabel(query_set, label);
}
pub inline fn reference(query_set: QuerySet) void {
pub inline fn reference(query_set: *QuerySet) void {
Impl.querySetReference(query_set);
}
pub inline fn release(query_set: QuerySet) void {
pub inline fn release(query_set: *QuerySet) void {
Impl.querySetRelease(query_set);
}
};