mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 02:42:22 -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.
11 lines
170 B
Odin
11 lines
170 B
Odin
//+build windows
|
|
package all
|
|
|
|
import D3D11 "vendor:directx/d3d11"
|
|
import D3D12 "vendor:directx/d3d12"
|
|
import DXGI "vendor:directx/dxgi"
|
|
|
|
_ :: D3D11
|
|
_ :: D3D12
|
|
_ :: DXGI
|