| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Small updates to JPEG loader | Jeroen van Rijn | 2025-09-09 | 2 | -736/+748 |
| | | | | | | - Remove some unnecessary nesting - Add frame type (SOF0, et al) to metadata if `.return_metadata` is used | ||||
| * | Expand grayscale JPEGs to RGB(A) | Jeroen van Rijn | 2025-09-09 | 1 | -10/+24 |
| | | | | | And handle grayscale jpeg example file in test suite. | ||||
| * | Implement .alpha_add_if_missing for JPEG | Jeroen van Rijn | 2025-09-09 | 1 | -17/+83 |
| | | |||||
| * | Make progressive JPEGs return a proper error | Jeroen van Rijn | 2025-09-09 | 1 | -1/+1 |
| | | | | | | | Add progressive JPEG file to test suite and test that loading it returns the expected `Unsupported_Frame_Type` error. This JPEG variant will hopefully be supported in the future, but we should at least return an error rather than use `unsupported()`. | ||||
| * | Address some naming issues | Jeroen van Rijn | 2025-09-08 | 1 | -16/+20 |
| | | |||||
| * | Make `_register` contextless | Jeroen van Rijn | 2025-09-08 | 1 | -1/+1 |
| | | |||||
| * | jpeg: extract Exif data | IllusionMan1212 | 2025-09-08 | 4 | -22/+87 |
| | | |||||
| * | jpeg: support images that encode zero-based component ids | IllusionMan1212 | 2025-09-08 | 1 | -3/+12 |
| | | |||||
| * | image/jpeg: more bounds checking and skip malformed APP0 | Hisham Aburaqibah | 2025-09-08 | 2 | -15/+26 |
| | | | | | Also increase the maximum huffman symbols to 176 | ||||
| * | image/jpeg: better pack APP0 structs | Hisham Aburaqibah | 2025-09-08 | 2 | -12/+12 |
| | | |||||
| * | image/jpeg: implement jpeg decoding for baseline and extended sequential jpegs | Hisham Aburaqibah | 2025-09-08 | 4 | -2/+1082 |
| | | |||||
| * | core/image: some jpegs have APP13 or COM markers after SOI | Hisham Aburaqibah | 2025-09-08 | 1 | -1/+1 |
| | | |||||
| * | [core:image/png] use .Image_Dimensions_Too_Large | Michael Lee | 2025-09-08 | 1 | -1/+5 |
| | | |||||
| * | Require `@(init)` and `@(fini)` to be `proc "contextless" ()` | gingerBill | 2025-08-08 | 6 | -10/+10 |
| | | |||||
| * | Remove outdated optimization attributes. | Jeroen van Rijn | 2025-05-27 | 1 | -3/+0 |
| | | |||||
| * | fix(core/image): off-by-one index when detecting certain JPEG images | Hisham Aburaqibah | 2025-01-05 | 1 | -1/+1 |
| | | |||||
| * | Remove outdated PNG save helpers | Jeroen van Rijn | 2024-12-23 | 1 | -129/+1 |
| | | |||||
| * | Fix image.which_bytes | Jeroen van Rijn | 2024-10-29 | 1 | -1/+1 |
| | | | | | Invert test in `which_bytes` to fix Softimage PIC detection. Fixes #4429. | ||||
| * | image: add panic when load is called without any registered loaders | Laytan Laats | 2024-10-20 | 1 | -1/+9 |
| | | |||||
| * | Moved all packages in core, base, vendor, tests and examples to use new #+ ↵ | Karl Zylinski | 2024-09-14 | 14 | -14/+14 |
| | | | | | file tag syntax. | ||||
| * | core: improve package doc comments for the documentation generator | Laytan Laats | 2024-09-03 | 5 | -356/+351 |
| | | |||||
| * | Added missing slice advancing. | gordonshamway23 | 2024-08-23 | 1 | -0/+2 |
| | | |||||
| * | Fix for blend_pixel.odin in core/image/common.odin not compiling | Karl Zylinski | 2024-08-05 | 1 | -1/+1 |
| | | |||||
| * | common.odin compile fix | Karl Zylinski | 2024-08-05 | 1 | -1/+1 |
| | | | | Fix for "Error: Prefer to separate 'where' clauses with a comma rather than '&&'" | ||||
| * | Fix `err != 0` uses | gingerBill | 2024-08-04 | 2 | -2/+2 |
| | | |||||
| * | Replace `err != 0` with `err != nil` where possible | gingerBill | 2024-08-04 | 1 | -1/+1 |
| | | |||||
| * | Add image.premultiply_alpha helper. | Jeroen van Rijn | 2024-08-03 | 1 | -0/+36 |
| | | |||||
| * | Add image.pixels_to_image helper.dev-2024-08 | Jeroen van Rijn | 2024-08-02 | 1 | -1/+28 |
| | | |||||
| * | fix `@(optimization_mode)` usage in builtin collections | Laytan Laats | 2024-07-08 | 3 | -7/+7 |
| | | |||||
| * | Fix loads of indentation issues with mixing spaces and tabs | gingerBill | 2024-06-29 | 2 | -4/+4 |
| | | |||||
| * | Even more style fixes | gingerBill | 2024-06-29 | 4 | -5/+5 |
| | | |||||
| * | Indentation fixes | gingerBill | 2024-06-29 | 2 | -58/+58 |
| | | |||||
| * | Check for unneeded `transmute` with `-vet-cast` | gingerBill | 2024-06-29 | 1 | -4/+2 |
| | | |||||
| * | Clean up PNG code. | Jeroen van Rijn | 2024-06-09 | 1 | -26/+20 |
| | | |||||
| * | Use new blend helper | Jeroen van Rijn | 2024-06-09 | 2 | -28/+41 |
| | | |||||
| * | Image: Add improved blending method and test it. | Jeroen van Rijn | 2024-06-09 | 2 | -11/+26 |
| | | |||||
| * | Add saving of 24 and 32-bit images to BMP format. | Jeroen van Rijn | 2024-06-06 | 2 | -1/+110 |
| | | |||||
| * | Rebased. | Jeroen van Rijn | 2024-06-06 | 4 | -0/+801 |
| | | |||||
| * | 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 |
| | | |||||
| * | Fix the format of some `doc.odin` files of the `core` library which did not ↵ | Maurizio M. Gavioli | 2024-04-14 | 1 | -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 vets | Laytan Laats | 2024-04-03 | 1 | -6/+6 |
| | | |||||
| * | Add `#no_broadcast` procedure parameter to disallow automatic array ↵ | gingerBill | 2024-03-21 | 1 | -18/+18 |
| | | | | | programming broadcasting on procedure arguments | ||||
| * | 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 |
| | | |||||