The open source OpenXR runtime
0
fork

Configure Feed

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

c/render: Internal comments

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

authored by

Rylie Pavlik and committed by
Simon Zeni
569419de a07bfba3

+4 -1
+4 -1
src/xrt/compositor/render/render_gfx.c
··· 180 180 vk->vkCmdBeginRenderPass(command_buffer, &render_pass_begin_info, VK_SUBPASS_CONTENTS_INLINE); 181 181 } 182 182 183 + /// Update descriptor set for a layer to reference the parameter UBO and the source (layer) image. 183 184 static void 184 185 update_ubo_and_src_descriptor_set(struct vk_bundle *vk, 185 186 uint32_t ubo_binding, ··· 230 231 NULL); // pDescriptorCopies 231 232 } 232 233 234 + /// Sub-allocate a UBO for our layer-specific data, 235 + /// and create a descriptor set for it and the layer image to sample. 233 236 XRT_CHECK_RESULT static VkResult 234 237 do_ubo_and_src_alloc_and_write(struct render_gfx *rr, 235 238 uint32_t ubo_binding, ··· 262 265 263 266 264 267 /* 265 - * Create and fill out destriptor. 268 + * Create and fill out descriptor. 266 269 */ 267 270 268 271 ret = vk_create_descriptor_set( //