diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 23:05:29 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 23:05:29 +0200 |
| commit | 7a9ea3ee6d02d8eade6d7988498bd69716391563 (patch) | |
| tree | 1a920e9550114cd2dc36d4c489bb65ea1f73542a /core/image | |
| parent | 2bc409eab53bb7208ec59d431112489eb9d226db (diff) | |
Further overhaul of package line comments.
Diffstat (limited to 'core/image')
| -rw-r--r-- | core/image/bmp/bmp.odin | 2 | ||||
| -rw-r--r-- | core/image/doc.odin | 2 | ||||
| -rw-r--r-- | core/image/jpeg/jpeg.odin | 2 | ||||
| -rw-r--r-- | core/image/netpbm/doc.odin | 2 | ||||
| -rw-r--r-- | core/image/png/doc.odin | 2 | ||||
| -rw-r--r-- | core/image/qoi/qoi.odin | 2 | ||||
| -rw-r--r-- | core/image/tga/tga.odin | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/core/image/bmp/bmp.odin b/core/image/bmp/bmp.odin index 189e371de..efb0dd7d9 100644 --- a/core/image/bmp/bmp.odin +++ b/core/image/bmp/bmp.odin @@ -1,4 +1,4 @@ -// package bmp implements a Microsoft BMP image reader and writer. +// Reader and writer for Microsoft `BMP` images. package core_image_bmp import "core:image" diff --git a/core/image/doc.odin b/core/image/doc.odin index cb6bc4d96..1e44cca59 100644 --- a/core/image/doc.odin +++ b/core/image/doc.odin @@ -1,2 +1,2 @@ -// package image implements a general 2D image library to be used with other image related packages. +// General 2D image types and procedures to be used with other image related packages. package image
\ No newline at end of file diff --git a/core/image/jpeg/jpeg.odin b/core/image/jpeg/jpeg.odin index b95f6ef99..241066273 100644 --- a/core/image/jpeg/jpeg.odin +++ b/core/image/jpeg/jpeg.odin @@ -1,4 +1,4 @@ -// package jpeg implements a reader for baseline JPEG images. +// Reader for baseline `JPEG` images. package jpeg import "core:bytes" diff --git a/core/image/netpbm/doc.odin b/core/image/netpbm/doc.odin index 720a7dc2a..bac893b0f 100644 --- a/core/image/netpbm/doc.odin +++ b/core/image/netpbm/doc.odin @@ -1,5 +1,5 @@ /* -package netpbm implements readers and writers for PBM, PGM, PPM, PAM and PFM images. +Readers and writers for `PBM`, `PGM`, `PPM`, `PAM` and `PFM` images. Formats: diff --git a/core/image/png/doc.odin b/core/image/png/doc.odin index 6b402dcb2..034a6775f 100644 --- a/core/image/png/doc.odin +++ b/core/image/png/doc.odin @@ -1,5 +1,5 @@ /* -package png implements a PNG image reader. +Reader for `PNG` images. The PNG specification is at [[ https://www.w3.org/TR/PNG/ ]]. diff --git a/core/image/qoi/qoi.odin b/core/image/qoi/qoi.odin index 8e4ff03e0..a2b38a7a6 100644 --- a/core/image/qoi/qoi.odin +++ b/core/image/qoi/qoi.odin @@ -1,4 +1,4 @@ -// package qoi implements a QOI image reader. +// Reader and writer for `QOI` images. // // The QOI specification is at [[ https://qoiformat.org ]]. package qoi diff --git a/core/image/tga/tga.odin b/core/image/tga/tga.odin index f2e34484b..ad939e7ff 100644 --- a/core/image/tga/tga.odin +++ b/core/image/tga/tga.odin @@ -1,4 +1,4 @@ -// package tga implements a TGA image reader and writer for 8-bit RGB and RGBA images. +// Reader and writer for 8-bit RGB and RGBA `TGA` images. package tga /* |