diff --git a/examples/all/all_vendor.odin b/examples/all/all_vendor.odin index 71bb6ef86..80f6c52bb 100644 --- a/examples/all/all_vendor.odin +++ b/examples/all/all_vendor.odin @@ -31,6 +31,7 @@ package all @(require) import "core:sys/darwin/Foundation" @(require) import "core:sys/darwin/CoreFoundation" @(require) import "core:sys/darwin/Security" +@(require) import "vendor:darwin/CoreVideo" @(require) import "vendor:darwin/Metal" @(require) import "vendor:darwin/MetalKit" @(require) import "vendor:darwin/QuartzCore" diff --git a/examples/all/all_vendor_windows.odin b/examples/all/all_vendor_windows.odin index b71b69a5a..8a0c29eaf 100644 --- a/examples/all/all_vendor_windows.odin +++ b/examples/all/all_vendor_windows.odin @@ -1,6 +1,7 @@ #+build windows package all +@(require) import "vendor:compress/lz4" @(require) import "vendor:wgpu/glfwglue" @(require) import "vendor:wgpu/sdl2glue" @(require) import "vendor:wgpu" diff --git a/vendor/box2d/box2d.odin b/vendor/box2d/box2d.odin index 8b0a57a4e..27d3fd177 100644 --- a/vendor/box2d/box2d.odin +++ b/vendor/box2d/box2d.odin @@ -1,3 +1,4 @@ +// Bindings for [[ Box2D ; https://box2d.org ]]. package vendor_box2d import "base:intrinsics" diff --git a/vendor/cgltf/cgltf.odin b/vendor/cgltf/cgltf.odin index bab58d851..9d2a975f3 100644 --- a/vendor/cgltf/cgltf.odin +++ b/vendor/cgltf/cgltf.odin @@ -1,3 +1,4 @@ +// Bindings for [[ cgtlf ; https://github.com/jkuhlmann/cgltf ]]. package cgltf @(private) diff --git a/vendor/commonmark/cmark.odin b/vendor/commonmark/cmark.odin index 6b07f157f..e63db9b15 100644 --- a/vendor/commonmark/cmark.odin +++ b/vendor/commonmark/cmark.odin @@ -1,5 +1,5 @@ /* - Bindings against CMark (https://github.com/commonmark/cmark) + Bindings for [[CMark ; https://github.com/commonmark/cmark ]]. Original authors: John MacFarlane, Vicent Marti, Kārlis Gaņģis, Nick Wellnhofer. See LICENSE for license details. diff --git a/vendor/commonmark/doc.odin b/vendor/commonmark/doc.odin index ef788fb8f..3b96594d9 100644 --- a/vendor/commonmark/doc.odin +++ b/vendor/commonmark/doc.odin @@ -1,6 +1,6 @@ #+build ignore /* - Bindings against CMark (https://github.com/commonmark/cmark) + Bindings for [[CMark; https://github.com/commonmark/cmark]]. Original authors: John MacFarlane, Vicent Marti, Kārlis Gaņģis, Nick Wellnhofer. See LICENSE for license details. diff --git a/vendor/compress/lz4/lz4.odin b/vendor/compress/lz4/lz4.odin index 310248d56..35acaeb5a 100644 --- a/vendor/compress/lz4/lz4.odin +++ b/vendor/compress/lz4/lz4.odin @@ -1,3 +1,4 @@ +// Bindings for [[LZ4 ; https://github.com/lz4/lz4]]. package vendor_compress_lz4 when ODIN_OS == .Windows { diff --git a/vendor/darwin/CoreVideo/CVDisplayLink.odin b/vendor/darwin/CoreVideo/CVDisplayLink.odin index fae988e0a..73d11d739 100644 --- a/vendor/darwin/CoreVideo/CVDisplayLink.odin +++ b/vendor/darwin/CoreVideo/CVDisplayLink.odin @@ -1,3 +1,4 @@ +// Bindings for [[ CoreVideo ; https://developer.apple.com/documentation/corevideo ]]. package CoreVideo DisplayLinkRef :: distinct rawptr diff --git a/vendor/darwin/Metal/MetalClasses.odin b/vendor/darwin/Metal/MetalClasses.odin index 67cf84f1e..c01c6311a 100644 --- a/vendor/darwin/Metal/MetalClasses.odin +++ b/vendor/darwin/Metal/MetalClasses.odin @@ -1,3 +1,4 @@ +// Bindings for [[ Metal ; https://developer.apple.com/documentation/metal ]]. package objc_Metal import NS "core:sys/darwin/Foundation" diff --git a/vendor/darwin/MetalKit/MetalKit.odin b/vendor/darwin/MetalKit/MetalKit.odin index 34a87cf42..3a4491a21 100644 --- a/vendor/darwin/MetalKit/MetalKit.odin +++ b/vendor/darwin/MetalKit/MetalKit.odin @@ -1,3 +1,4 @@ +// Bindings for [[ MetalKit ; https://developer.apple.com/documentation/metalkit ]]. package objc_MetalKit import NS "core:sys/darwin/Foundation" diff --git a/vendor/darwin/QuartzCore/QuartzCore.odin b/vendor/darwin/QuartzCore/QuartzCore.odin index b19a5fec5..0e54b3d30 100644 --- a/vendor/darwin/QuartzCore/QuartzCore.odin +++ b/vendor/darwin/QuartzCore/QuartzCore.odin @@ -1,3 +1,4 @@ +// Bindings for [[ QuartzCore ; https://developer.apple.com/documentation/quartzcore ]]. package objc_QuartzCore import NS "core:sys/darwin/Foundation"