gpu: update remaining TODOs

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-18 22:56:46 -07:00 committed by Stephen Gutekanst
parent cc7aa3a49a
commit cfc9708b37
3 changed files with 3 additions and 10 deletions

View file

@ -1896,8 +1896,8 @@ const command_encoder_vtable = CommandEncoder.VTable{
.stencilReadOnly = v.stencil_read_only,
} else null,
.occlusionQuerySet = if (d.occlusion_query_set) |v| @ptrCast(c.WGPUQuerySet, v.ptr) else null,
.timestampWriteCount = 0, // TODO
.timestampWrites = null, // TODO
.timestampWriteCount = 0, // TODO(implement)
.timestampWrites = null, // TODO(implement)
};
return wrapRenderPassEncoder(c.wgpuCommandEncoderBeginRenderPass(@ptrCast(c.WGPUCommandEncoder, ptr), &desc));
}