From 8aa384d01a079ec2d816f7051a7208a337727338 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Fri, 2 May 2025 08:46:31 -0600 Subject: expo: Rename x and y in struct scene_obj_bbox These coordinates are the top left values, so rename them to x0 and y0 in preparation for changing the width and height to x1 and y1 Signed-off-by: Simon Glass --- include/expo.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/expo.h b/include/expo.h index 42e934e3ff2..84dc77f771e 100644 --- a/include/expo.h +++ b/include/expo.h @@ -194,14 +194,14 @@ enum scene_obj_t { /** * struct scene_obj_bbox - Dimensions of an object * - * @x: x position, in pixels from left side - * @y: y position, in pixels from top + * @x0: x position, in pixels from left side + * @y0: y position, in pixels from top * @w: width, in pixels * @h: height, in pixels */ struct scene_obj_bbox { - int x; - int y; + int x0; + int y0; int w; int h; }; -- cgit v1.3.1