aboutsummaryrefslogtreecommitdiff
path: root/vendor/raylib/raylib.odin
Commit message (Collapse)AuthorAgeFilesLines
* import cleanupjakubtomsu6 days1-21/+18
|
* Added MAX_MATERIAL_MAPS constantFurkan2025-11-011-0/+1
|
* Doc lines for vendor:*Jeroen van Rijn2025-10-101-1/+1
|
* raylib: Refer to Odin-style enum over original C enumFeoramund2025-06-231-1/+1
| | | | Fixes #4865
* fix raylib.CameraMoveRight signatureDan Korostelev2025-01-241-1/+1
|
* Fix raylib DrawRectangleRoundedLinesLineuVale2025-01-181-1/+1
|
* Added WASM libs for raylib and raygui. Added them to the foreign import ↵Karl Zylinski2025-01-011-0/+5
| | | | blocks, with optional ways to override them. These overrides can be used to use alterantive libs when using for example emscripten.
* change camera defines to constantsTina Colvin2024-12-041-5/+5
|
* add bindings for rCamera module in vendor/raylib/raylib.odinTina Colvin2024-12-041-0/+28
|
* vendor/raylib: revert removal of arm64 raygui binaries and fix import pathsLaytan Laats2024-11-261-2/+2
|
* Add aliases for Is*Ready -> Is*ValidJeroen van Rijn2024-11-251-5/+19
|
* Resolve indentation issueslxmcf2024-11-251-4/+4
|
* Add missing trailing commasAlex Macafee2024-11-251-2/+2
|
* Update vendor:raylib to raylib 5.5lxmcf2024-11-251-202/+230
|
* fix LoadRandomSequence binding in vendor raylibnickk-dv2024-11-061-5/+5
|
* va_list fixes for raylib & stb sprintfLaytan Laats2024-09-291-1/+1
|
* Merge pull request #4134 from karl-zylinski/fix-raylib-LoadImageAnim-bindingLaytan2024-08-241-1/+1
|\ | | | | Fix binding: Make rl.LoadImageAnim take a pointer instead of a multi-pointer.
| * Fix comment indentation.Karl Zylinski2024-08-241-1/+1
| |
| * Make rl.LoadImageAnim take a pointer instead of a multipointer. The param ↵Karl Zylinski2024-08-241-1/+1
| | | | | | | | frames is just for returning an int, it's not for passing a multipointer into the proc.
* | Remove unused importgingerBill2024-08-241-1/+0
| |
* | `MemFree` as a procedure group for both `rawptr` and `cstring`gingerBill2024-08-241-1/+18
| |
* | Use `fmt.caprintf` directlygingerBill2024-08-241-2/+1
| |
* | Fix `-vet-tabs` issuesgingerBill2024-08-241-3/+3
|/
* Fix formatting inconsistenciesgingerBill2024-07-161-3/+3
|
* `rawptr` -> `cstring`gingerBill2024-07-161-1/+1
|
* Imply `#no_capture` to all variadic parametersgingerBill2024-07-141-2/+2
|
* Add more uses of `#no_capture`gingerBill2024-07-141-2/+2
|
* Changed rl.SetShaderValue etc to take a c.int like in original raylib.h. You ↵Karl Zylinski2024-06-111-6/+8
| | | | should be able to use other values than the ShaderLocationIndex enum, that enum is only for build in things in raylib. Added #any_int on those procs so you can pass both int and also a ShaderLocationIndex.
* Add parentheses around the foreign import pathsgingerBill2024-06-061-2/+2
|
* Fix `extra_linker_flags` for raylib on windowsgingerBill2024-06-041-2/+1
|
* Utilize `foreign import` constant strings for foreign importsgingerBill2024-06-041-66/+23
|
* Fixed typo in raylib documentationalec hodgkinson2024-04-221-2/+2
|
* Update raylib to use `#row_major` matricesgingerBill2024-03-191-6/+6
|
* Enforce `linalg`gingerBill2024-03-081-31/+10
|
* clean importsLaytan Laats2024-03-011-1/+1
|
* move `va_list` into `core:c`Laytan Laats2024-03-011-7/+1
|
* makes raylib and stb_rect_pack free of libcLaytan Laats2024-02-291-5/+9
|
* Fix #3233gingerBill2024-02-281-2/+2
|
* Additional fixes for errors in Raylib bindings since Raylib 4 -> 5 upgrade.Karl Zylinski2024-02-261-5/+4
|
* Fix ModelAnimation in raylib.odin missing a field.Karl Zylinski2024-02-261-0/+1
|
* Update raylib.odinMurtagy2024-02-051-2/+2
|
* typo in commentMurtagy2024-02-031-1/+1
|
* bring log allocator up to dateColin Davidson2024-01-171-73/+164
|\
| * Fix #1934 raylib IsGestureDetectedgingerBill2024-01-171-2/+13
| |
| * Added comment on SetConfigFlags in Raylib bindings that it must be called ↵Karl Zylinski2024-01-111-1/+1
| | | | | | | | before window creation
| * Raylib 5.0 IsMouseButtonUp workaround: Better use of when clause to make ↵Karl Zylinski2023-12-181-4/+8
| | | | | | | | sure we remove the workaround later.
| * Raylib workaround: Fix comment typoKarl Zylinski2023-12-181-1/+1
| |
| * Raylib 5.0 bug workaround: Check VERSION and panic if VERSION != 5.0, in ↵Karl Zylinski2023-12-181-3/+5
| | | | | | | | which case there is info in the message about how to remove the workaround.
| * Workaround for bug in Raylib 5 making IsMouseButtonUp not work properly.Karl Zylinski2023-12-171-4/+7
| |
| * IsMouseButtonUp hack for nowMichael2023-12-161-1/+4
| |