From a59e3c6a8b34c8f6aa9e4eff254e815679190b35 Mon Sep 17 00:00:00 2001 From: Olivia Lee Date: Sat, 12 Jul 2025 18:24:52 -0700 Subject: [PATCH] pan/shared: fix typo in pan_tiling doc comments Fixes: 944049dedc0 ("panfrost: Document arguments to tiling routines") Signed-off-by: Olivia Lee Reviewed-by: Christoph Pillmayer Part-of: --- src/panfrost/shared/pan_tiling.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panfrost/shared/pan_tiling.h b/src/panfrost/shared/pan_tiling.h index cffbe6f09e4..2432cfedd6d 100644 --- a/src/panfrost/shared/pan_tiling.h +++ b/src/panfrost/shared/pan_tiling.h @@ -41,8 +41,8 @@ extern "C" { * @src Tiled source * @x Region of interest of source in pixels, aligned to block size * @y Region of interest of source in pixels, aligned to block size - * @z Region of interest of source in pixels, aligned to block size * @w Region of interest of source in pixels, aligned to block size + * @h Region of interest of source in pixels, aligned to block size * @dst_stride Stride in bytes of linear destination * @src_stride Number of bytes between adjacent rows of tiles in source. * @format Format of the source and destination image @@ -58,8 +58,8 @@ void pan_load_tiled_image(void *dst, const void *src, unsigned x, unsigned y, * @src Linear source * @x Region of interest of destination in pixels, aligned to block size * @y Region of interest of destination in pixels, aligned to block size - * @z Region of interest of destination in pixels, aligned to block size * @w Region of interest of destination in pixels, aligned to block size + * @h Region of interest of destination in pixels, aligned to block size * @dst_stride Number of bytes between adjacent rows of tiles in destination. * @src_stride Stride in bytes of linear source * @format Format of the source and destination image