mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-20 07:50:45 +00:00
[vulkan] Fix some typos
This commit is contained in:
parent
14c94711fd
commit
ffb113fa65
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue