[vulkan] Fix some typos

This commit is contained in:
Bill Currie 2023-07-30 13:06:37 +09:00
parent 14c94711fd
commit ffb113fa65
2 changed files with 2 additions and 2 deletions

View file

@ -283,7 +283,7 @@ QFV_RunRenderJob (vulkan_ctx_t *ctx)
__auto_type step = &job->steps[i];
if (!step->process) {
// run render and compute steps automatically only if there's no
// process for the step (the idea is the proces uses the compute
// process for the step (the idea is the process uses the compute
// and renderpass objects for its own purposes).
if (step->render) {
run_renderpass (step->render->active, ctx, 0);

View file

@ -189,7 +189,7 @@ count_step_stuff (qfv_stepinfo_t *step, objcount_t *counts)
}
if (!step->render && !step->compute && !step->process) {
Sys_Error ("%s: invalid step: must have at least one of "
"proces/render/compute", step->name);
"process/render/compute", step->name);
}
if (step->render) {
__auto_type rinfo = step->render;