aboutsummaryrefslogtreecommitdiff
path: root/core/image/netpbm
Commit message (Collapse)AuthorAgeFilesLines
* core:os -> core:os/old && core:os/os2 -> core:osJeroen van Rijn6 days1-1/+1
|
* core:os -> core:os/os for core:imageJeroen van Rijn7 days1-8/+6
|
* Make `using` as a statement an opt-in with `#+feature using-stmt`gingerBill2025-12-211-18/+16
|
* Removed redundant build tagsJames Liljenquist2025-12-051-1/+0
|
* Further overhaul of package line comments.Jeroen van Rijn2025-10-091-1/+1
|
* Package lines for `core:image`.Jeroen van Rijn2025-10-091-0/+2
|
* Require `@(init)` and `@(fini)` to be `proc "contextless" ()`gingerBill2025-08-081-1/+1
|
* Moved all packages in core, base, vendor, tests and examples to use new #+ ↵Karl Zylinski2024-09-143-3/+3
| | | | file tag syntax.
* Fix the format of some `doc.odin` files of the `core` library which did not ↵Maurizio M. Gavioli2024-04-141-18/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | made into the documentation. `c/frontend/tokenizer`: add proper "Example:" header to demo example code, removed empty lines. `container/bit_array`: moved comment before package; aligned narrative lines to left margin; converted case lines into bulleted lines ("- "); converted individual examples to single-tab-indented preformatted text. `dynlib`: removed "//+build ignore" line; added newline at EOF. `image/netpmb`: converted indented lines of "Reading", "Wrting" and "Some syntax..." into bulleted lists; "Formats" indented lines kept as they are as the preformatted text seems relevant to keep the alignments; doubly indented lines kept as single-indented to keep them different (as the format does not allow for two-level bulleted lists); removed empy lines. `os/os2`: WIP, not modified `sys/info`: removed "//+build ignore" line; converted tab-indented initial description into regular left-margin comment; moved uncommented sample code within the doc comment as an "Example:"; moved simple- and double-tabbed separate comments with sample Windows and macOS outputs within the doc comment as bulleted headlines with preformatted output listings; removed now empty comments and blank lines after the package line. `text/i18n`: removed "//+build ignore" line; moved the pacakge line at the end; de-indented the tab-indented introductory narrative; moved sample code comments into the doc comment as tab-indented code with a proper "Example:" heading; removed "```" MD attempts at code formatting. `text/table`: unindented the comment lines of a descriptive kind; headlines of major subdivisions are marked as bold; kept code samples as tab-indented preformatted text (as there are several of them, the standard "Example:" and "Output:" headings cannot be used) removing the "```" MD attempts at code formatting; removed in-between blank lines.
* correct newly found vetsLaytan Laats2024-04-031-6/+6
|
* Replace `core:*` to `base:*` where appropriategingerBill2024-01-281-1/+1
|
* Clean up usage of `using` throughout core and vendorgingerBill2023-07-311-7/+8
|
* Improve `//+vet`; remove `using` in many places; add `//+vet !using-stmt` ↵gingerBill2023-07-311-0/+1
| | | | where necessary
* Replace `x in &y` Use `&v in y` syntax through core & vendor for ↵gingerBill2023-06-261-6/+6
| | | | `switch`/`for` statements
* Make `core:image` packages work on `js` platform (wasm32) by not requiring ↵gingerBill2023-03-233-36/+51
| | | | `core:os`
* Add `runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD` where appropriategingerBill2023-02-101-0/+3
|
* Rename strings.Builder procedures to be consistent with the rest of the core ↵gingerBill2022-07-111-2/+2
| | | | library
* Add `image.destroy`gingerBill2022-05-141-5/+2
|
* Add `destroy` with loadergingerBill2022-05-141-5/+8
|
* Rename `load_from_buffer` to `load_from_bytes`gingerBill2022-05-141-4/+4
|
* Fix type and keep -vet happygingerBill2022-05-141-1/+1
|
* Add image packages to examples/allgingerBill2022-05-141-5/+5
|
* Generalized `core:image` loadergingerBill2022-05-141-0/+12
| | | | | | | | | | | ```odin import "core:image" import "core:image/png" ... img, err := image.load_from_file("path.png") ```
* Fixed the depth values in the doc file, made some info more clearWalterPlinge2022-05-012-10/+11
|
* [pbm] Remove stray comment.Jeroen van Rijn2022-04-301-1/+0
|
* [pbm] Fixes.Jeroen van Rijn2022-04-302-25/+25
|
* [pbm] WIP unit tests.Jeroen van Rijn2022-04-302-27/+112
|
* [pbm] Normalize some errors, correct .depthJeroen van Rijn2022-04-301-37/+24
|
* Image: Fix implicit enum errorWalterPlinge2022-04-181-1/+1
|
* Added initial Netpbm image format supportWalterPlinge2022-04-183-0/+739