Merge pull request #3870 from laytan/fix-fontstash-proc-group

vendor/fontstash: fix 'AddFont' proc group for JS target
This commit is contained in:
Jeroen van Rijn
2024-07-04 17:05:49 +02:00
committed by GitHub

10
vendor/fontstash/fontstash_other.odin vendored Normal file
View File

@@ -0,0 +1,10 @@
//+build js
package fontstash
AddFontPath :: proc(
ctx: ^FontContext,
name: string,
path: string,
) -> int {
panic("fontstash.AddFontPath is unsupported on the JS target")
}