diff options
| author | gingerBill <bill@gingerbill.org> | 2022-02-18 15:56:53 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-02-18 15:56:53 +0000 |
| commit | 197b83299229a6d8733b2b6b2b3397ea717fbb17 (patch) | |
| tree | e13c5fda6d0989870a934195f15fb4c925abbd3b /examples | |
| parent | 8f13724a4b9782d7ac8e6a8037d0a44cfd41e240 (diff) | |
Add vendor:directx and vendor:darwin packages for documentation generation
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_vendor.odin | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/examples/all/all_vendor.odin b/examples/all/all_vendor.odin index f94e092af..9aa109e5b 100644 --- a/examples/all/all_vendor.odin +++ b/examples/all/all_vendor.odin @@ -1,7 +1,6 @@ //+build windows package all - import botan "vendor:botan" import ENet "vendor:ENet" import gl "vendor:OpenGL" @@ -25,6 +24,15 @@ import stb_vorbis "vendor:stb/vorbis" import vk "vendor:vulkan" +import D3D11 "vendor:directx/d3d11" +import D3D12 "vendor:directx/d3d12" +import DXGI "vendor:directx/dxgi" + +// note these are technicaly darwin only but they are added to aid with documentation generation +import NS "vendor:darwin/Foundation" +import MTL "vendor:darwin/Metal" +import CA "vendor:darwin/QuartzCore" + _ :: botan _ :: ENet @@ -44,4 +52,10 @@ _ :: stbi _ :: stbrp _ :: stbtt _ :: stb_vorbis -_ :: vk
\ No newline at end of file +_ :: vk +_ :: D3D11 +_ :: D3D12 +_ :: DXGI +_ :: NS +_ :: MTL +_ :: CA
\ No newline at end of file |