The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

c/util: Fix typos in comments

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2378>

+4 -4
+1 -1
src/xrt/compositor/util/comp_render.h
··· 498 498 * 499 499 * All source layer images needs to be in the correct image layout, no barrier 500 500 * is inserted for them. The target images are barriered from undefined to general 501 - * so they can be written to, then to the laying defined by @p transition_to. 501 + * so they can be written to, then to the layout defined by @p transition_to. 502 502 * 503 503 * Expected layouts: 504 504 *
+3 -3
src/xrt/compositor/util/comp_render_gfx.c
··· 532 532 533 533 /* 534 534 * Reserve UBOs, create descriptor sets, and fill in any data ahead of 535 - * time. If we ever want to copy UBO data, this lets us do that easily: 535 + * time. If we ever want to copy UBO data this lets us do that easily: 536 536 * write a copy command before the other gfx commands. 537 537 */ 538 538 ··· 685 685 VkResult ret; 686 686 687 687 /* 688 - * Reserve UBOs, create descriptor sets, and fill in any data a head of 689 - * time, if we ever want to copy UBO data this lets us do that easily 688 + * Reserve UBOs, create descriptor sets, and fill in any data ahead of 689 + * time. If we ever want to copy UBO data this lets us do that easily: 690 690 * write a copy command before the other gfx commands. 691 691 */ 692 692