pan/shared: fix typo in pan_tiling doc comments
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Fixes: 944049dedc ("panfrost: Document arguments to tiling routines")
Signed-off-by: Olivia Lee <olivia.lee@collabora.com>
Reviewed-by: Christoph Pillmayer <christoph.pillmayer@arm.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36102>
This commit is contained in:
Olivia Lee 2025-07-12 18:24:52 -07:00 committed by Marge Bot
parent a74ac59220
commit a59e3c6a8b

View file

@ -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