mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 19:02:23 -07:00
562901aedf
create 3 files: - all_vendor.odin : no specific OS - all_vendor_directx.odin : directx vendor, windows-only - all_vendor_stb.odin : stb vendor, windows and linux only stb could technically be used on others OS. but it is shipped upstream as set of c-files without unified library name.
16 lines
318 B
Odin
16 lines
318 B
Odin
//+build windows, linux
|
|
package all
|
|
|
|
import stb_easy_font "vendor:stb/easy_font"
|
|
import stbi "vendor:stb/image"
|
|
import stbrp "vendor:stb/rect_pack"
|
|
import stbtt "vendor:stb/truetype"
|
|
import stb_vorbis "vendor:stb/vorbis"
|
|
|
|
_ :: stb_easy_font
|
|
_ :: stbi
|
|
_ :: stbrp
|
|
_ :: stbtt
|
|
_ :: stb_vorbis
|
|
|