From fc294e6f9a2fba86a92ba5aa3e9bd29932426f57 Mon Sep 17 00:00:00 2001 From: galister <22305755+galister@users.noreply.github.com> Date: Wed, 25 Jun 2025 21:29:33 +0900 Subject: [PATCH] SharedAtlas is not pub --- wgui/src/renderer_vk/context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wgui/src/renderer_vk/context.rs b/wgui/src/renderer_vk/context.rs index 7bdcd2a..b8e94ad 100644 --- a/wgui/src/renderer_vk/context.rs +++ b/wgui/src/renderer_vk/context.rs @@ -110,7 +110,7 @@ impl SharedContext { } } -pub struct SharedAtlas { +struct SharedAtlas { text_atlas: TextAtlas, pixel_scale: f32, } @@ -243,4 +243,4 @@ impl Context { Ok(()) } -} \ No newline at end of file +}