From 8ecc1202117f2bfec7ebc0b4769db996b8ab5c57 Mon Sep 17 00:00:00 2001 From: Matthew Kuo Date: Sun, 17 Jan 2016 04:48:32 -0800 Subject: [PATCH] changed gfx private types to public --- components/gfx/platform/freetype/font_context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/gfx/platform/freetype/font_context.rs b/components/gfx/platform/freetype/font_context.rs index 0bb1137a472..05cbd0675f6 100644 --- a/components/gfx/platform/freetype/font_context.rs +++ b/components/gfx/platform/freetype/font_context.rs @@ -18,7 +18,7 @@ use util::mem::{HeapSizeOf, heap_size_of}; // We pass a |User| struct -- via an opaque |void*| -- to FreeType each time a new instance is // created. FreeType passes it back to the ft_alloc/ft_realloc/ft_free callbacks. We use it to // record the memory usage of each FreeType instance. -struct User { +pub struct User { size: usize, }