From e4089d3832550ede956f98b00fd59668adf570d3 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Sun, 30 Jun 2024 22:06:44 -0400 Subject: [PATCH] Change package name to lowercase --- vefontcache/LRU.odin | 2 +- vefontcache/VEFontCache.odin | 2 +- vefontcache/atlas.odin | 2 +- vefontcache/draw.odin | 2 +- vefontcache/mappings.odin | 2 +- vefontcache/misc.odin | 2 +- vefontcache/parser.odin | 2 +- vefontcache/shaped_text.odin | 2 +- vefontcache/shaper.odin | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/vefontcache/LRU.odin b/vefontcache/LRU.odin index f04da54..1e624d0 100644 --- a/vefontcache/LRU.odin +++ b/vefontcache/LRU.odin @@ -1,4 +1,4 @@ -package VEFontCache +package vefontcache /* The choice was made to keep the LRU cache implementation as close to the original as possible. diff --git a/vefontcache/VEFontCache.odin b/vefontcache/VEFontCache.odin index b1864e9..970d93e 100644 --- a/vefontcache/VEFontCache.odin +++ b/vefontcache/VEFontCache.odin @@ -3,7 +3,7 @@ A port of (https://github.com/hypernewbie/VEFontCache) to Odin. See: https://github.com/Ed94/VEFontCache-Odin */ -package VEFontCache +package vefontcache import "base:runtime" diff --git a/vefontcache/atlas.odin b/vefontcache/atlas.odin index 600a826..8b7b0c5 100644 --- a/vefontcache/atlas.odin +++ b/vefontcache/atlas.odin @@ -1,4 +1,4 @@ -package VEFontCache +package vefontcache AtlasRegionKind :: enum u8 { None = 0x00, diff --git a/vefontcache/draw.odin b/vefontcache/draw.odin index 537f7ea..fd21aa4 100644 --- a/vefontcache/draw.odin +++ b/vefontcache/draw.odin @@ -1,4 +1,4 @@ -package VEFontCache +package vefontcache Vertex :: struct { pos : Vec2, diff --git a/vefontcache/mappings.odin b/vefontcache/mappings.odin index 55f2b9d..6acd64b 100644 --- a/vefontcache/mappings.odin +++ b/vefontcache/mappings.odin @@ -1,4 +1,4 @@ -package VEFontCache +package vefontcache import "core:hash" fnv64a :: hash.fnv64a diff --git a/vefontcache/misc.odin b/vefontcache/misc.odin index 9976050..30c30da 100644 --- a/vefontcache/misc.odin +++ b/vefontcache/misc.odin @@ -1,4 +1,4 @@ -package VEFontCache +package vefontcache import "base:runtime" import "core:simd" diff --git a/vefontcache/parser.odin b/vefontcache/parser.odin index 5d7cb74..ca63dd8 100644 --- a/vefontcache/parser.odin +++ b/vefontcache/parser.odin @@ -1,4 +1,4 @@ -package VEFontCache +package vefontcache /* Notes: diff --git a/vefontcache/shaped_text.odin b/vefontcache/shaped_text.odin index 96b8cd1..5accedd 100644 --- a/vefontcache/shaped_text.odin +++ b/vefontcache/shaped_text.odin @@ -1,4 +1,4 @@ -package VEFontCache +package vefontcache ShapedText :: struct { glyphs : [dynamic]Glyph, diff --git a/vefontcache/shaper.odin b/vefontcache/shaper.odin index 18a5014..fa0fe83 100644 --- a/vefontcache/shaper.odin +++ b/vefontcache/shaper.odin @@ -1,4 +1,4 @@ -package VEFontCache +package vefontcache /* Note(Ed): The only reason I didn't directly use harfbuzz is because hamza exists and seems to be under active development as an alternative. */