diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 17:18:51 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 17:18:51 +0200 |
| commit | 673358f8b9e2b8daf95790e75b17204eeeb7dd82 (patch) | |
| tree | 4cd6deb71763d0faeec2d1d7739d995a42816c42 /core/image/qoi/qoi.odin | |
| parent | 51cd08296f618a8c2b25aa4f31f584d98024896a (diff) | |
Package lines for `core:image`.
Diffstat (limited to 'core/image/qoi/qoi.odin')
| -rw-r--r-- | core/image/qoi/qoi.odin | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/core/image/qoi/qoi.odin b/core/image/qoi/qoi.odin index ded8d7971..8e4ff03e0 100644 --- a/core/image/qoi/qoi.odin +++ b/core/image/qoi/qoi.odin @@ -1,3 +1,8 @@ +// package qoi implements a QOI image reader. +// +// The QOI specification is at [[ https://qoiformat.org ]]. +package qoi + /* Copyright 2022 Jeroen van Rijn <nom@duclavier.com>. Made available under Odin's BSD-3 license. @@ -6,12 +11,6 @@ Jeroen van Rijn: Initial implementation. */ - -// package qoi implements a QOI image reader -// -// The QOI specification is at [[ https://qoiformat.org ]]. -package qoi - import "core:image" import "core:compress" import "core:bytes" |