···345345 * @note Swapchains in the @p layers must implement @ref comp_swapchain in
346346 * addition to just @ref xrt_swapchain, as this function downcasts to @ref comp_swapchain !
347347 *
348348- * @param rr GFX render object
348348+ * @param render GFX render object
349349 * @param[in] layers Layers to render, see note.
350350 * @param[in] layer_count Number of elements in @p layers array.
351351 * @param[in] d Common render dispatch data
352352 */
353353void
354354-comp_render_gfx_dispatch(struct render_gfx *rr,
354354+comp_render_gfx_dispatch(struct render_gfx *render,
355355 const struct comp_layer *layers,
356356 const uint32_t layer_count,
357357 const struct comp_render_dispatch_data *d);
···468468 * @note Swapchains in the @p layers must implement @ref comp_swapchain in
469469 * addition to just @ref xrt_swapchain, as this function downcasts to @ref comp_swapchain !
470470 *
471471- * @param crc Compute renderer object
471471+ * @param render Compute renderer object
472472 * @param view_index Index of the view
473473 * @param layers Layers to render, see note.
474474 * @param layer_count Number of elements in @p layers array.
···481481 * @param do_timewarp
482482 */
483483void
484484-comp_render_cs_layer(struct render_compute *crc,
484484+comp_render_cs_layer(struct render_compute *render,
485485 uint32_t view_index,
486486 const struct comp_layer *layers,
487487 const uint32_t layer_count,
···513513 * @note Swapchains in the @p layers must implement @ref comp_swapchain in
514514 * addition to just @ref xrt_swapchain, as this function downcasts to @ref comp_swapchain !
515515 *
516516- * @param crc Compute renderer object
516516+ * @param render Compute renderer object
517517 * @param[in] layers Layers to render, see note.
518518 * @param[in] layer_count Number of elements in @p layers array.
519519 * @param[in] d Common render dispatch data
520520 * @param[in] transition_to Desired image layout for target images
521521 */
522522void
523523-comp_render_cs_layers(struct render_compute *crc,
523523+comp_render_cs_layers(struct render_compute *render,
524524 const struct comp_layer *layers,
525525 const uint32_t layer_count,
526526 const struct comp_render_dispatch_data *d,
527527 VkImageLayout transition_to);
528528529529/*!
530530- * Write commands to @p crc to do a full composition with distortion.
530530+ * Write commands to @p render to do a full composition with distortion.
531531 *
532532 * Helper function that takes a set of layers, new device poses, a scratch
533533 * images and writes the needed commands to the @ref render_compute to do a full
···551551 * @note Swapchains in the @p layers must implement @ref comp_swapchain in
552552 * addition to just @ref xrt_swapchain, as this function downcasts to @ref comp_swapchain !
553553 *
554554- * @param crc Compute renderer object
554554+ * @param render Compute renderer object
555555 * @param[in] layers Layers to render, see note.
556556 * @param[in] layer_count Number of elements in @p layers array.
557557 * @param[in] d Common render dispatch data
558558 *
559559 */
560560void
561561-comp_render_cs_dispatch(struct render_compute *crc,
561561+comp_render_cs_dispatch(struct render_compute *render,
562562 const struct comp_layer *layers,
563563 const uint32_t layer_count,
564564 const struct comp_render_dispatch_data *d);