| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | core:os -> core:os/old && core:os/os2 -> core:os | Jeroen van Rijn | 6 days | 1 | -2/+2 |
| | | |||||
| * | core:os -> core:os/os for core:image | Jeroen van Rijn | 7 days | 1 | -22/+19 |
| | | |||||
| * | Removed redundant build tags | James Liljenquist | 2025-12-05 | 1 | -1/+0 |
| | | |||||
| * | Change Odin's LICENSE to zlib from BSD 3-clause | gingerBill | 2025-10-28 | 1 | -1/+1 |
| | | | | | This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form. | ||||
| * | Further overhaul of package line comments. | Jeroen van Rijn | 2025-10-09 | 1 | -1/+1 |
| | | |||||
| * | Package lines for `core:image`. | Jeroen van Rijn | 2025-10-09 | 1 | -6/+5 |
| | | |||||
| * | Require `@(init)` and `@(fini)` to be `proc "contextless" ()` | gingerBill | 2025-08-08 | 1 | -1/+1 |
| | | |||||
| * | Moved all packages in core, base, vendor, tests and examples to use new #+ ↵ | Karl Zylinski | 2024-09-14 | 2 | -2/+2 |
| | | | | | file tag syntax. | ||||
| * | core: improve package doc comments for the documentation generator | Laytan Laats | 2024-09-03 | 1 | -1/+1 |
| | | |||||
| * | fix `@(optimization_mode)` usage in builtin collections | Laytan Laats | 2024-07-08 | 1 | -2/+2 |
| | | |||||
| * | Fix loads of indentation issues with mixing spaces and tabs | gingerBill | 2024-06-29 | 1 | -2/+2 |
| | | |||||
| * | Even more style fixes | gingerBill | 2024-06-29 | 1 | -1/+1 |
| | | |||||
| * | Check for unneeded `transmute` with `-vet-cast` | gingerBill | 2024-06-29 | 1 | -4/+2 |
| | | |||||
| * | Apply fix to QOI decoder as well. | Jeroen van Rijn | 2024-05-18 | 1 | -378/+377 |
| | | |||||
| * | Fix qoi encode bug. | Jeroen van Rijn | 2024-05-18 | 1 | -2/+0 |
| | | |||||
| * | Disallow `for in` in favour of `for _ in` | gingerBill | 2023-08-08 | 1 | -1/+1 |
| | | |||||
| * | Improve error handling for `resize` and `reserve` procedures | gingerBill | 2023-05-22 | 1 | -2/+2 |
| | | |||||
| * | Rename `save_to_memory` for consistency. | Jeroen van Rijn | 2023-03-24 | 3 | -4/+4 |
| | | |||||
| * | Make `core:image` packages work on `js` platform (wasm32) by not requiring ↵ | gingerBill | 2023-03-23 | 3 | -30/+43 |
| | | | | | `core:os` | ||||
| * | Add `image.destroy` | gingerBill | 2022-05-14 | 1 | -0/+1 |
| | | |||||
| * | Add `destroy` with loader | gingerBill | 2022-05-14 | 1 | -3/+2 |
| | | |||||
| * | Rename `load_from_slice` to `load_from_bytes` across `core` | gingerBill | 2022-05-14 | 1 | -5/+5 |
| | | |||||
| * | Generalized `core:image` loader | gingerBill | 2022-05-14 | 1 | -0/+5 |
| | | | | | | | | | | | | ```odin import "core:image" import "core:image/png" ... img, err := image.load_from_file("path.png") ``` | ||||
| * | [pbm] Normalize some errors, correct .depth | Jeroen van Rijn | 2022-04-30 | 1 | -7/+5 |
| | | |||||
| * | [QOI] Add support for RGB images (previously loader always output RGBA). | Jeroen van Rijn | 2022-04-12 | 1 | -14/+15 |
| | | | | | Also add QOI to CI test suite by roundtripping 8-bit RGB(A) through QOI and checking the hashes match. | ||||
| * | [image] Add QOI load/save. | Jeroen van Rijn | 2022-04-12 | 1 | -0/+407 |
| Additionally: - Firm up PNG loader with some additional checks. - Add helper functions to `core:image` to expand grayscale to RGB(A), and so on. TODO: Possibly replace PNG's post-processing steps with calls to the new helper functions. | |||||