aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1760 from Kelimion/xxh3_fixdev-2022-05Jeroen van Rijn2022-05-011-4/+4
|\ | | | | [xxh3] Fix flaws in streaming implementation
| * [xxh3] Fix flaws in streaming implementationJeroen van Rijn2022-05-011-4/+4
|/
* [pbm] Remove stray comment.Jeroen van Rijn2022-04-301-1/+0
|
* [tests/core/image] Remove old crappy PPM writer.Jeroen van Rijn2022-04-301-201/+0
|
* Merge pull request #1726 from WalterPlinge/image-netpbmJeroen van Rijn2022-04-308-52/+1049
|\ | | | | Add Netpbm image format support
| * [pbm] Also test PFM formats.Jeroen van Rijn2022-04-301-14/+95
| |
| * Merge branch 'master' into pr/1726Jeroen van Rijn2022-04-3018-385/+192
| |\ | |/ |/|
* | Merge pull request #1757 from Kelimion/xmlJeroen van Rijn2022-04-302-4/+11
|\ \ | | | | | | [xml] Add `parse_from_string` overload.
| * | [xml] Add `parse_from_string` overload.Jeroen van Rijn2022-04-302-4/+11
|/ / | | | | | | | | `parse` now takes either a `[]u8` slice or a string. `load_from_file` takes a path string.
* | Merge pull request #1746 from odin-lang/sync-cond-futexgingerBill2022-04-3011-369/+159
|\ \ | | | | | | `core:sync` Improvements
| * | Remove unused importsgingerBill2022-04-304-4/+0
| | |
| * | Unify implementation for *nix platformsgingerBill2022-04-305-221/+63
| | |
| * | Add `sync.Parker`gingerBill2022-04-301-0/+56
| | |
| * | Remove the wait group based semaphore implementationgingerBill2022-04-303-49/+24
| | | | | | | | | | | | It was a misuse of the data structure
| * | Correct explicit atomic orderingsgingerBill2022-04-301-4/+3
| | |
| * | Use Acquire semantics for the `futex_wait` load shortcutgingerBill2022-04-271-2/+2
| | |
| * | Remove `prev` from `Atomic_Cond`gingerBill2022-04-271-7/+3
| | |
| * | Merge branch 'master' into sync-cond-futexgingerBill2022-04-271-0/+1
| |\ \
| | * \ Merge branch 'master' of https://github.com/odin-lang/OdingingerBill2022-04-271-15/+18
| | |\ \
| | * | | Update intrinsics.odingingerBill2022-04-271-0/+1
| | | | |
| * | | | Merge branch 'master' into sync-cond-futexgingerBill2022-04-2729-507/+1075
| |\ \ \ \ | | | |/ / | | |/| |
| * | | | Implement `_Sema` with `Atomic_Sema`gingerBill2022-04-261-38/+4
| | | | |
| * | | | Simplify `Atomic_Sema` implementationgingerBill2022-04-261-36/+31
| | | | |
| * | | | Simplify Atomic_Cond implementationgingerBill2022-04-262-94/+19
| | | | |
* | | | | Merge pull request #1753 from awwdev/mastergingerBill2022-04-302-11/+11
|\ \ \ \ \ | | | | | | | | | | | | Fixing some typos in vendor:OpenGL
| * | | | | fix typo in TexImage3Dawwdev2022-04-292-2/+2
| | | | | |
| * | | | | replaced a few [^]u8 with cstringawwdev2022-04-292-9/+9
| | | | | |
* | | | | | Merge pull request #1756 from ftphikari/masterJeroen van Rijn2022-04-303-1/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | sys/windows: add a couple of procedures and types
| * | | | | | sys/windows: fix build issueshikari2022-04-302-2/+2
| | | | | | |
| * | | | | | sys/windows: change macro and add commenthikari2022-04-301-2/+4
| | | | | | |
| * | | | | | sys/windows: add GetDCBrushColorhikari2022-04-301-0/+1
| | | | | | |
| * | | | | | sys/windows: add a couple of procedures and typeshikari2022-04-303-1/+8
| | | | | | |
| | | | | | * [pbm] Fixes.Jeroen van Rijn2022-04-303-67/+69
| | | | | | |
| | | | | | * [pbm] WIP unit tests. part deux.Jeroen van Rijn2022-04-301-2/+26
| | | | | | |
| | | | | | * [pbm] WIP unit tests.Jeroen van Rijn2022-04-303-42/+155
| | | | | | |
| | | | | | * [pbm] Normalize some errors, correct .depthJeroen van Rijn2022-04-306-77/+70
| | | | | | |
| | | | | | * Merge branch 'master' into pr/1726Jeroen van Rijn2022-04-3080-697/+13559
| | | | | | |\ | |_|_|_|_|_|/ |/| | | | | |
* | | | | | | [i18n] Enable *nix tests again.Jeroen van Rijn2022-04-292-10/+10
| | | | | | |
* | | | | | | Disable i18n test for *nix for now.Jeroen van Rijn2022-04-291-1/+1
| | | | | | |
* | | | | | | Merge pull request #1754 from Kelimion/i18nJeroen van Rijn2022-04-294-22/+32
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | [i18n] Fix segfault on cleanup on Linux
| * | | | | | | [i18n] Enable i18n test on Linux.Jeroen van Rijn2022-04-291-2/+5
| | | | | | | |
| * | | | | | | [i18n] Fix segfault on destroy on LinuxJeroen van Rijn2022-04-293-20/+27
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | Forgot to intern the section string in QT TS loader.
* | | | | | | Merge pull request #1336 from Kelimion/i18nJeroen van Rijn2022-04-2918-61/+918
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | [i18n] Initial i18n support.
| * | | | | | [i18n] Add tests.Jeroen van Rijn2022-04-2910-109/+329
| | | | | | |
| * | | | | | [i18n/xml] Move I18N XML files to their own assets directory.Jeroen van Rijn2022-04-297-22/+11
| | | | | | |
| * | | | | | [i18n] Move to `core:text/i18n`.Jeroen van Rijn2022-04-297-2/+3
| | | | | | |
| * | | | | | [i18n] QT Linguist TS reader.Jeroen van Rijn2022-04-296-42/+243
| | | | | | |
| * | | | | | [i18n] Allow multiple sections.Jeroen van Rijn2022-04-282-14/+54
| | | | | | |
| * | | | | | [i18n] Initial i18n support.Jeroen van Rijn2022-04-286-0/+406
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add initial GetText .MO parser - Add translation struct and helpers - Pluralized lookup TODO: - Support for more translation catalog file formats.
* | | | | | Merge pull request #1752 from sduman/patch-1Jeroen van Rijn2022-04-291-2/+2
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Add missing result parameter names