| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Replace `core:*` to `base:*` where appropriate | gingerBill | 2024-01-28 | 4 | -5/+5 |
| | | |||||
| * | Disallow `for in` in favour of `for _ in` | gingerBill | 2023-08-08 | 1 | -1/+1 |
| | | |||||
| * | Clean up usage of `using` throughout core and vendor | gingerBill | 2023-07-31 | 1 | -7/+8 |
| | | |||||
| * | Improve `//+vet`; remove `using` in many places; add `//+vet !using-stmt` ↵ | gingerBill | 2023-07-31 | 3 | -12/+12 |
| | | | | | where necessary | ||||
| * | Replace `x in &y` Use `&v in y` syntax through core & vendor for ↵ | gingerBill | 2023-06-26 | 2 | -7/+7 |
| | | | | | `switch`/`for` statements | ||||
| * | Use positional and named arguments within the core library | gingerBill | 2023-06-21 | 1 | -4/+4 |
| | | |||||
| * | Improve error handling for `resize` and `reserve` procedures | gingerBill | 2023-05-22 | 4 | -14/+14 |
| | | |||||
| * | Rename `save_to_memory` for consistency. | Jeroen van Rijn | 2023-03-24 | 6 | -8/+8 |
| | | |||||
| * | Make `core:image` packages work on `js` platform (wasm32) by not requiring ↵ | gingerBill | 2023-03-23 | 16 | -191/+247 |
| | | | | | `core:os` | ||||
| * | Add `runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD` where appropriate | gingerBill | 2023-02-10 | 3 | -21/+31 |
| | | |||||
| * | Merge pull request #1544 from FancyKillerPanda/build_ignore | gingerBill | 2022-11-03 | 1 | -1/+1 |
| |\ | | | | | Changed `//+ignore` to `//+build ignore` and emit a warning for unknown tags | ||||
| | * | Changed //+ignore to //+build ignore. | FancyKillerPanda | 2022-02-24 | 1 | -1/+1 |
| | | | |||||
| * | | [TGA] Add B&W and RLE color-mapped. | Jeroen van Rijn | 2022-08-29 | 2 | -12/+92 |
| | | | |||||
| * | | [TGA] Add B5G5R5 15- and 16-bit support. | Jeroen van Rijn | 2022-08-28 | 1 | -41/+98 |
| | | | |||||
| * | | [TGA] Add support for Top-Right and Bottom-Right origins. | Jeroen van Rijn | 2022-08-28 | 2 | -10/+31 |
| | | | |||||
| * | | Various changes to TGA reader | Jeroen van Rijn | 2022-08-28 | 2 | -50/+100 |
| | | | | | | | | | | | | | | | | | - Style changes - Change ptr usage to slice indexing - Add TGA Footer Also, add `peek_data` with offset to `compress`. | ||||
| * | | style fix | Benoit Jacquier | 2022-08-27 | 1 | -1/+1 |
| | | | |||||
| * | | Add RLE supports for TGA loader | Benoit Jacquier | 2022-08-27 | 2 | -18/+57 |
| | | | |||||
| * | | Merge remote-tracking branch 'origin/master' | Benoit Jacquier | 2022-08-27 | 3 | -9/+9 |
| |\ \ | |||||
| | * | | Fix to png example.odin | gingerBill | 2022-08-11 | 1 | -1/+1 |
| | | | | |||||
| | * | | fix some typos | cui fliter | 2022-08-05 | 1 | -5/+5 |
| | | | | | | | | | | | | | Signed-off-by: cui fliter <imcusg@gmail.com> | ||||
| | * | | Change `unreachable` with `panic` | gingerBill | 2022-08-05 | 1 | -3/+3 |
| | | | | |||||
| * | | | Add support for basic TGA loading | Benoit Jacquier | 2022-08-27 | 2 | -1/+151 |
| |/ / | |||||
| * | | Rename strings.Builder procedures to be consistent with the rest of the core ↵ | gingerBill | 2022-07-11 | 1 | -2/+2 |
| | | | | | | | | | library | ||||
| * | | Add DjVu | gingerBill | 2022-05-14 | 1 | -0/+6 |
| | | | |||||
| * | | Remove `bool` return on `image.destroy` | gingerBill | 2022-05-14 | 1 | -3/+2 |
| | | | |||||
| * | | Destroy pixel buffer | gingerBill | 2022-05-14 | 1 | -0/+2 |
| | | | |||||
| * | | Correction to `image.destroy` | gingerBill | 2022-05-14 | 2 | -2/+4 |
| | | | |||||
| * | | Add `image.destroy` | gingerBill | 2022-05-14 | 6 | -16/+29 |
| | | | |||||
| * | | Add `destroy` with loader | gingerBill | 2022-05-14 | 4 | -14/+21 |
| | | | |||||
| * | | Rename `load_from_buffer` to `load_from_bytes` | gingerBill | 2022-05-14 | 1 | -4/+4 |
| | | | |||||
| * | | Rename `load_from_slice` to `load_from_bytes` across `core` | gingerBill | 2022-05-14 | 3 | -16/+14 |
| | | | |||||
| * | | Fix type and keep -vet happy | gingerBill | 2022-05-14 | 2 | -2/+1 |
| | | | |||||
| * | | Add image packages to examples/all | gingerBill | 2022-05-14 | 1 | -5/+5 |
| | | | |||||
| * | | Generalized `core:image` loader | gingerBill | 2022-05-14 | 5 | -0/+63 |
| | | | | | | | | | | | | | | | | | | | | | | | ```odin import "core:image" import "core:image/png" ... img, err := image.load_from_file("path.png") ``` | ||||
| * | | Add PAM and PFM to format detection. | Jeroen van Rijn | 2022-05-14 | 1 | -1/+5 |
| | | | |||||
| * | | Add even more file formats | gingerBill | 2022-05-14 | 1 | -6/+25 |
| | | | |||||
| * | | Add `image.which` file format testing procedures | gingerBill | 2022-05-14 | 1 | -0/+150 |
| | | | |||||
| * | | Fixed the depth values in the doc file, made some info more clear | WalterPlinge | 2022-05-01 | 2 | -10/+11 |
| | | | |||||
| * | | [pbm] Remove stray comment. | Jeroen van Rijn | 2022-04-30 | 1 | -1/+0 |
| | | | |||||
| * | | Merge branch 'master' into pr/1726 | Jeroen van Rijn | 2022-04-30 | 1 | -1/+1 |
| |\ \ | |||||
| | * | | sys/windows: add a couple of procedures and types | hikari | 2022-04-30 | 1 | -1/+1 |
| | | | | |||||
| * | | | [pbm] Fixes. | Jeroen van Rijn | 2022-04-30 | 2 | -25/+25 |
| | | | | |||||
| * | | | [pbm] WIP unit tests. | Jeroen van Rijn | 2022-04-30 | 2 | -27/+112 |
| | | | | |||||
| * | | | [pbm] Normalize some errors, correct .depth | Jeroen van Rijn | 2022-04-30 | 5 | -71/+64 |
| | | | | |||||
| * | | | Merge branch 'master' into pr/1726 | Jeroen van Rijn | 2022-04-30 | 2 | -0/+117 |
| |\| | | |||||
| | * | | [image/tga] Writer for RGB(A) 8-bit images. | Jeroen van Rijn | 2022-04-18 | 2 | -0/+117 |
| | | | | |||||
| * | | | Image: Fix implicit enum error | WalterPlinge | 2022-04-18 | 2 | -3/+2 |
| | | | | |||||
| * | | | Added initial Netpbm image format support | WalterPlinge | 2022-04-18 | 4 | -0/+785 |
| |/ / | |||||
| * | | [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. | ||||