ianband
7e7939e1ad
Add DrawCapsule(Wires) ( #2761 )
* Add DrawCapsule & DrawCapsuleWires
* Add DrawCapsule & DrawCapsuleWires to example
Co-authored-by: Ian Band <ian.r.band@gmail.com>
преди 2 години
Ray
e61639f6fc
ADDED: `GenImageText()`
Probably useless but interesting for education. It generated a grayscale image directly from text data.
преди 2 години
Dor Shapira
8025b052b3
fixing typo ( #2748 )
преди 2 години
Ray
38025362ee
Update version to `raylib 4.5-dev` to avoid confusions with 4.2
преди 2 години
Ray
26969c2c38
Added `BLEND_CUSTOM_SEPARATE` #2741
преди 2 години
Dor Shapira
587e61def9
fixing new typoes ( #2727 )
преди 2 години
Dor Shapira
5c404c79da
Update raylib.h ( #2726 )
преди 2 години
bXi
e9ca38fafa
Clarified working of ImageDrawCircle and ImageDrawCircleV ( #2719 )
преди 2 години
Ray
810a0330ab
WARNING: Several changes on UTF-8/Codepoints API
- ADDED: `GetCodepointPrevious()`
- RENAMED: `GetCodepoint()` -> `GetCodepointNext()`, actually, reimplemented
- `GetCodepoint()` has been kept for the moment, for compatibility and also because implementation is different
- RENAMED: `TextCodepointsToUTF8()` to `LoadUTF8()`, simpler name and more aligned with raylib conventions (functions loading memory start with Load*()), parameters should be descriptive of functionailty.
- ADDED: `UnloadUTF8()`, aligned with `LoadUTF8()` to avoid allocators issues.
преди 2 години
Rob Loach
2093fdcc53
Added: `ImageDrawCircleLines`, `ImageDrawCircleLinesV` ( #2713 )
This adds `ImageDrawCircleLines()` and `ImageDrawCircleLinesV()` to draw outlines of circles, and updates `ImageDrawCircle()` draw a filled circle to match the effect of `DrawCircle()` and `DrawCircleLines()`.
преди 2 години
Ray
cb9b8f73c0
ADDED: `GenImagePerlinNoise()`
преди 2 години
Ray
ac1ffbad1d
REVIEWED: Data type to unsigned
преди 2 години
Ray
f4b4054de5
REVIEWED: `CheckCollisionPointPoly()`
преди 2 години
Jacek
aff98d7f2a
Check collision point polygon ( #2685 )
* Update raylib.h
* CheckCollisionPointPolygon()
* typo
преди 2 години
Ray
e92bc8ca4e
REVIEWED: M3D implementation #2648
преди 2 години
Ray
14990209ef
Added comments
преди 2 години
Ray
eb8d14e5b2
Update version to raylib 4.2
преди 2 години
Ray
6c2c176a99
Added note
преди 2 години
Audi Nugraha
d1aabb3957
Allow DLL creation using TCC ( #2569 )
* Fix Undefined Symbol `_ftelli64`
* Add files via upload
* Update raylib.h
* Update raylib.h
преди 3 години
Ray
7fb7591e4f
Update raylib.h
преди 3 години
Ray
e722a8dbef
WARNING: BREAKING: REMOVED: `*StorageValue()` functions
Those functions were platform dependent and user has no control over the file created. They have been removed from raylib and just moved to `core_storage_values` example.
преди 3 години
Ray
e0f0a5f663
REMOVED: `GenMeshBinormals()`, actually, never implemented
преди 3 години
Steven Schveighoffer
e1e0bc4266
Add function to read both X and Y mouse scrolling from a trackpad ( #2517 )
(GetMouseWheelMoveV).
преди 3 години
Ray
875601c4cc
REVIEWED: `FilePathList`, consider maximum capacity
преди 3 години
Ray
b8f67c6285
WARNING: BREAKING: REDESIGNED: Filepath loading API
REDESIGNED: `LoadDirectoryFiles()`
ADDED: `LoadDirectoryFilesEx()`
REDESIGNED: `LoadDroppedFiles()`
ADDED: `IsPathFile()`
This BIG BREAKING change simplifies the functions and gives more control to the user:
- A new `struct FilePathList` has been added to avoid exposing complex pointers.
- User is responsible of memory loading/unloading
- Filepaths loading support recursive directories and file extension filters
преди 3 години
Ray
b9f617aaee
Update raylib.h
преди 3 години
Ray
702f2bccfc
REVIEWED: Issue with MOUSE_PASSTROUGH #2516
преди 3 години
Ray
b549baa6b7
New feature: support MOUSE_PASSTHROUGH #2516
преди 3 години
gulrak
5e3ef42201
GetMonitorWidth()/GetMonitorHeight(): return current video resolution instead max available ( #2514 )
* GetMonitorWidth()/GetMonitorHeight(): current video resolution instead max available
* adapt header comment to reflect change
преди 3 години
Ray
dca23cb3ff
RENAMED: `BLEND_ALPHA_PREMUL` to `BLEND_ALPHA_PREMULTIPLY`
преди 3 години
Ray
e6bc401c93
WARNING: RENAMED: `GetDroppedFiles()` to `LoadDroppedFiles()`
RENAMED: `ClearDroppedFiles()` to `UnloadDroppedFiles()`
преди 3 години
Ray
ebbcc2ffce
WARNING: RENAMED: `GetDirectoryFiles()` to `LoadDirectoryFiles()`
RENAMED: `ClearDirectoryFiles()` to `UnloadDirectoryFiles()`
преди 3 години
Ray
461cdda71e
Reviewed latest PR, variable name
преди 3 години
flashback-fx
c11d30bafe
Change WaitTime argument from milliseconds to seconds ( #2506 )
преди 3 години
Ray
6fccfc57a4
Minor tweak
преди 3 години
Jonathan Poncelet
5bdd8f134f
Improved boolean definitions ( #2485 )
преди 3 години
Ray
db16833d8c
ADDED: `EnableEventWaiting()` / `DisableEventWaiting()`
Events waiting can be enabled/disabled, it toggles event polling.
преди 3 години
Ray
d9a30b8480
ADDED: `ExportDataAsCode()`
преди 3 години
Ray
666aa44a84
Reviewed some comments
преди 3 години
Ray
f169530d8f
Update raylib.h
преди 3 години
Ray
f71cc53bc9
WARNING: RENAMED: some parameters from length to size
When referring to byte array SIZE, I find it more clear than length
преди 3 години
Ray
1612ba63ab
ADDED: Audio stream processors support -WIP- #2212
This feature is still under consideration/testing and it doesn't work properly, at least the Delay Effect processor.
преди 3 години
Ray
90fc7c0376
WARNING: BREAKING: REMOVED: `GetRayCollisionModel()` #2405
преди 3 години
Ray
418a595b6f
Corrected typo
преди 3 години
Ray
8e28872fe1
Rename audio callback
преди 3 години
Ray
381236051f
ADDED: Audio stream input callback #2212 -WIP-
WARNING: This addition is based on a PR and it's still under review, not sure if it will be maintained in the future. In general, raylib tries to avoid callbacks usage mechanisms.
преди 3 години
Ray
a5a098c97f
Remove space
преди 3 години
raysan5
937e7b3dd9
REVIEWED: Some functions input parametes that should be `const`
преди 3 години
Antonis Geralis
68bad6986d
make const ( #2348 )
* make const
* make const
преди 3 години
Antonis Geralis
963de06d08
follow style guide ( #2346 )
* follow style guide
* Update rmodels.c
преди 3 години