aboutsummaryrefslogtreecommitdiff
path: root/core/image
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-01-17 19:00:47 +0000
committergingerBill <bill@gingerbill.org>2022-01-17 19:00:47 +0000
commitc85ac955f798fefd149a5eeaecabf0713210b152 (patch)
treeef9ca75b6f5cfc1630314c19ea0a7a9378f89b5d /core/image
parent97922406fec4296ce0732d1eefa0b9d7c943086f (diff)
Simplify docs to hide the copyright
Diffstat (limited to 'core/image')
-rw-r--r--core/image/common.odin2
-rw-r--r--core/image/png/png.odin5
2 files changed, 7 insertions, 0 deletions
diff --git a/core/image/common.odin b/core/image/common.odin
index 3ec8e15be..d72b770d5 100644
--- a/core/image/common.odin
+++ b/core/image/common.odin
@@ -6,6 +6,8 @@
Jeroen van Rijn: Initial implementation, optimization.
Ginger Bill: Cosmetic changes.
*/
+
+// package image implements a general 2D image library to be used with other image related packages
package image
import "core:bytes"
diff --git a/core/image/png/png.odin b/core/image/png/png.odin
index da76a4588..bff0afde3 100644
--- a/core/image/png/png.odin
+++ b/core/image/png/png.odin
@@ -6,6 +6,11 @@
Jeroen van Rijn: Initial implementation.
Ginger Bill: Cosmetic changes.
*/
+
+
+// package png implements a PNG image reader
+//
+// The PNG specification is at https://www.w3.org/TR/PNG/.
package png
import "core:compress"