mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-28 10:20:05 +00:00
11 lines
179 B
Odin
11 lines
179 B
Odin
//+build js
|
|
package fontstash
|
|
|
|
AddFontPath :: proc(
|
|
ctx: ^FontContext,
|
|
name: string,
|
|
path: string,
|
|
) -> int {
|
|
panic("fontstash.AddFontPath is unsupported on the JS target")
|
|
}
|