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