mirror of
https://github.com/Ed94/VEFontCache-Odin.git
synced 2025-08-05 14:42:42 -07:00
Change package name to lowercase
This commit is contained in:
@@ -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.
|
||||
|
@@ -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"
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package VEFontCache
|
||||
package vefontcache
|
||||
|
||||
AtlasRegionKind :: enum u8 {
|
||||
None = 0x00,
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package VEFontCache
|
||||
package vefontcache
|
||||
|
||||
Vertex :: struct {
|
||||
pos : Vec2,
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package VEFontCache
|
||||
package vefontcache
|
||||
|
||||
import "core:hash"
|
||||
fnv64a :: hash.fnv64a
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package VEFontCache
|
||||
package vefontcache
|
||||
|
||||
import "base:runtime"
|
||||
import "core:simd"
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package VEFontCache
|
||||
package vefontcache
|
||||
|
||||
/*
|
||||
Notes:
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package VEFontCache
|
||||
package vefontcache
|
||||
|
||||
ShapedText :: struct {
|
||||
glyphs : [dynamic]Glyph,
|
||||
|
@@ -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.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user