aboutsummaryrefslogtreecommitdiff
path: root/core/image/tga/tga.odin
diff options
context:
space:
mode:
authorMichael Lee <leecommamichael@gmail.com>2025-12-23 16:12:53 -0600
committerGitHub <noreply@github.com>2025-12-23 16:12:53 -0600
commit550e57aba977ff766e5ab38a4c13a8dc18d55992 (patch)
tree6704ea53d838f7d7427e5bf6faa1d586378869b3 /core/image/tga/tga.odin
parent729d0a8e8ace759d5d1358b14b20e19f68f44ff0 (diff)
parent57352d9933785097e21c282807f5e845ec8f6d85 (diff)
Merge branch 'odin-lang:master' into core-image-tga
Diffstat (limited to 'core/image/tga/tga.odin')
-rw-r--r--core/image/tga/tga.odin9
1 files changed, 4 insertions, 5 deletions
diff --git a/core/image/tga/tga.odin b/core/image/tga/tga.odin
index c20201d6a..1941b53f9 100644
--- a/core/image/tga/tga.odin
+++ b/core/image/tga/tga.odin
@@ -1,16 +1,15 @@
+// Reader and writer for 8-bit RGB and RGBA `TGA` images.
+package tga
+
/*
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
List of contributors:
Jeroen van Rijn: Initial implementation.
Benoit Jacquier: tga loader
*/
-
-// package tga implements a TGA image writer for 8-bit RGB and RGBA images.
-package tga
-
import "core:mem"
import "core:image"
import "core:bytes"