From ce2475ba739c04938616d59e6048a1355f4fdd06 Mon Sep 17 00:00:00 2001 From: Nic Barker Date: Mon, 26 May 2025 10:10:24 +1000 Subject: [PATCH] [Compilers] Add missing struct name for image element config --- clay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clay.h b/clay.h index b4167bc..be2b076 100644 --- a/clay.h +++ b/clay.h @@ -402,7 +402,7 @@ CLAY__WRAPPER_STRUCT(Clay_TextElementConfig); // Image -------------------------------- // Controls various settings related to image elements. -typedef struct { +typedef struct Clay_ImageElementConfig { void* imageData; // A transparent pointer used to pass image data through to the renderer. Clay_Dimensions sourceDimensions; // The original dimensions of the source image, used to control aspect ratio. } Clay_ImageElementConfig; -- 2.39.5