mirror of
https://github.com/Ed94/VEFontCache-Odin.git
synced 2025-08-06 06:52:44 -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.
|
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
|
See: https://github.com/Ed94/VEFontCache-Odin
|
||||||
*/
|
*/
|
||||||
package VEFontCache
|
package vefontcache
|
||||||
|
|
||||||
import "base:runtime"
|
import "base:runtime"
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
package VEFontCache
|
package vefontcache
|
||||||
|
|
||||||
AtlasRegionKind :: enum u8 {
|
AtlasRegionKind :: enum u8 {
|
||||||
None = 0x00,
|
None = 0x00,
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
package VEFontCache
|
package vefontcache
|
||||||
|
|
||||||
Vertex :: struct {
|
Vertex :: struct {
|
||||||
pos : Vec2,
|
pos : Vec2,
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
package VEFontCache
|
package vefontcache
|
||||||
|
|
||||||
import "core:hash"
|
import "core:hash"
|
||||||
fnv64a :: hash.fnv64a
|
fnv64a :: hash.fnv64a
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
package VEFontCache
|
package vefontcache
|
||||||
|
|
||||||
import "base:runtime"
|
import "base:runtime"
|
||||||
import "core:simd"
|
import "core:simd"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
package VEFontCache
|
package vefontcache
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Notes:
|
Notes:
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
package VEFontCache
|
package vefontcache
|
||||||
|
|
||||||
ShapedText :: struct {
|
ShapedText :: struct {
|
||||||
glyphs : [dynamic]Glyph,
|
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.
|
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