diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-06-21 21:05:52 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-06-21 21:05:52 +0200 |
| commit | 352494cbb4ad2ddb650b59ce8102da3ea0942e79 (patch) | |
| tree | 26e0d545c17b6bc64a40550e493a2ba1da648070 /core/image/png/png.odin | |
| parent | 797c41950a90f75a279a48195baf733903e23ca3 (diff) | |
ZLIB: Start optimization.
Diffstat (limited to 'core/image/png/png.odin')
| -rw-r--r-- | core/image/png/png.odin | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/image/png/png.odin b/core/image/png/png.odin index 18295793d..b4f25201f 100644 --- a/core/image/png/png.odin +++ b/core/image/png/png.odin @@ -1,5 +1,14 @@ package png +/* + Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. + Made available under Odin's BSD-2 license. + + List of contributors: + Jeroen van Rijn: Initial implementation. + Ginger Bill: Cosmetic changes. +*/ + import "core:compress" import "core:compress/zlib" import "core:image" |