Change package name to lowercase

This commit is contained in:
2024-06-30 22:06:44 -04:00
parent b7f008521d
commit e4089d3832
9 changed files with 9 additions and 9 deletions

View File

@@ -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. The choice was made to keep the LRU cache implementation as close to the original as possible.

View File

@@ -3,7 +3,7 @@ A port of (https://github.com/hypernewbie/VEFontCache) to Odin.
See: https://github.com/Ed94/VEFontCache-Odin See: https://github.com/Ed94/VEFontCache-Odin
*/ */
package VEFontCache package vefontcache
import "base:runtime" import "base:runtime"

View File

@@ -1,4 +1,4 @@
package VEFontCache package vefontcache
AtlasRegionKind :: enum u8 { AtlasRegionKind :: enum u8 {
None = 0x00, None = 0x00,

View File

@@ -1,4 +1,4 @@
package VEFontCache package vefontcache
Vertex :: struct { Vertex :: struct {
pos : Vec2, pos : Vec2,

View File

@@ -1,4 +1,4 @@
package VEFontCache package vefontcache
import "core:hash" import "core:hash"
fnv64a :: hash.fnv64a fnv64a :: hash.fnv64a

View File

@@ -1,4 +1,4 @@
package VEFontCache package vefontcache
import "base:runtime" import "base:runtime"
import "core:simd" import "core:simd"

View File

@@ -1,4 +1,4 @@
package VEFontCache package vefontcache
/* /*
Notes: Notes:

View File

@@ -1,4 +1,4 @@
package VEFontCache package vefontcache
ShapedText :: struct { ShapedText :: struct {
glyphs : [dynamic]Glyph, glyphs : [dynamic]Glyph,

View File

@@ -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. 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.
*/ */