Ray
e61639f6fc
ADDED: `GenImageText()`
Probably useless but interesting for education. It generated a grayscale image directly from text data.
2 yıl önce
Kenta
ccd4f8b5ae
Add C3 binding to BINDINGS.md ( #2757 )
2 yıl önce
Anut-py
11fd883ee4
Add Haskell bindings to BINDINGS.md ( #2753 )
2 yıl önce
CrezyDud
aa67f7c39a
Fix & Simplify .vox signature check ( #2752 )
and make version check be only 150 not over 150
2 yıl önce
hartmannathan
f080367a0c
examples/core/core_custom_logging.c: Fix typo ( #2751 )
2 yıl önce
Ray
07bbfe86b9
Update core_basic_window.c
2 yıl önce
hkc
8ebe62b4dd
Use RL_QUADS/RL_TRIANGLES for single-pixel drawing ( #2750 )
Addresses problem mentioned in
https://github.com/raysan5/raylib/issues/2744#issuecomment-1273568263
(in short: when drawing pixels using DrawPixel{,V} in camera mode,
upscaled pixel becomes a line instead of bigger pixel)
2 yıl önce
Szieberth Ádám
4cca234f46
avoid leading spaces in `text_rectangle_bounds` ( #2746 )
2 yıl önce
Dor Shapira
0d04ceafbf
build raylib_api without the 'vectex' tyops ( #2749 )
2 yıl önce
Dor Shapira
8025b052b3
fixing typo ( #2748 )
2 yıl önce
JupiterRider
cb085a1b50
Update BINDINGS.md ( #2745 )
2 yıl önce
Ray
cee0fc5d78
Update README.md
2 yıl önce
Ray
38025362ee
Update version to `raylib 4.5-dev` to avoid confusions with 4.2
2 yıl önce
Ray
7a15861d44
Update rlgl.h
2 yıl önce
Ray
26969c2c38
Added `BLEND_CUSTOM_SEPARATE` #2741
2 yıl önce
Ray
25d846aa9a
Avoid early return calls
2 yıl önce
Ray
9017be3259
Reviewed latest PR formating and variables naming #2741
2 yıl önce
凌溢狐
2d88958d35
Add rlSetBlendFactorsSeparate and custom blend mode modification checks ( #2741 )
2 yıl önce
Ray
2e26cf48e8
Merge branch 'master' of https://github.com/raysan5/raylib
2 yıl önce
Ray
7459d906de
Update rtext.c
2 yıl önce
_Tradam
62d228346b
Update build.zig to work with last GLFW update ( #2737 )
2 yıl önce
veins1
2872b2fff5
Clear PCM buffer state when closing audio device ( #2736 )
Fix for #2714
2 yıl önce
Ray
33e7f7cc59
WARNING: `DrawLineBezier()` implementation needs review #2721
2 yıl önce
Rob Loach
0daaaddeef
Fix Gestures to use GetTime() if it's available ( #2733 )
2 yıl önce
Random
03f5fce672
removed glfwSetWindowPos on InitWindow ( #2732 )
* removed glfwSetWindowPos on InitWindow
* removed execute permission from CMakeLists
2 yıl önce
Ray
178a356cb4
minor tweaks
2 yıl önce
Random
f14955512f
fix issue #2728 ( #2731 )
* fix issue #2728
* updated gamecontrollerdb: fixes GLFW warning due to invalid entry
2 yıl önce
Ray
45da03df23
Reviewed monitor checking order
2 yıl önce
Ray
4fe6f885f7
Update gamepad mappings with latest gamecontrollerdb, fix #2725
2 yıl önce
Ray
357f782f4e
Merge branch 'master' of https://github.com/raysan5/raylib
2 yıl önce
Ray
0ced04f0df
Fix #2722
2 yıl önce
Dor Shapira
587e61def9
fixing new typoes ( #2727 )
2 yıl önce
Dor Shapira
5c404c79da
Update raylib.h ( #2726 )
2 yıl önce
Michael Scherbakow
8f88c61bdf
update build.zig ( #2720 )
zig `master` now enforces to use addIncludePath instead of addIncludeDir
2 yıl önce
bXi
e9ca38fafa
Clarified working of ImageDrawCircle and ImageDrawCircleV ( #2719 )
2 yıl önce
Ray
7ab056b6ef
REVIEWED: `GeneshHeightmap()`, fix #2716
2 yıl önce
Ray
2ef0b064e5
Fix isssue #2718
2 yıl önce
Ray
ea87491a82
ADDED: Support CAPS/NUM lock keys registering if locked
2 yıl önce
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 yıl önce
Ray
4b1d4b4f6b
Update rcore.c
2 yıl önce
Ray
907e9e1fe2
Update text_codepoints_loading.c
2 yıl önce
Ray
4311ffc9e1
REVIEWED: New functions coding conventions
2 yıl önce
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 yıl önce
Ray
0e5cd442be
REVIEWED: Renamed some shaders, fix #2707
2 yıl önce
Ray
5530a3ceb8
REVIEWED: `ScanDirectoryFilesRecursively()`, fix #2704
2 yıl önce
Ray
6e8f3b0f45
Update rlgl.h
2 yıl önce
Ray
12e8cef9cf
REMOVED: Mipmaps software generation for OpenGL 1.1
As generation is done in software, it's up to the user to do it. `ImageMipmaps()` is already provided for reference.
2 yıl önce
Denis Pobedrya
27781a4767
Remove touch points on touch up events on Android ( #2711 )
Fixes #2683
Remove elements from touch point related arrays when touch up and
similar events are processed. This makes GetTouchPointCount() always
report the actual count of touch points, and all positions returned by
GetTouchPosition() correspond to positions of currently happening
touches.
2 yıl önce
Gunko Vadim
7e3a50b4ac
Update BINDINGS.md ( #2710 )
2 yıl önce
Nikolas
42ecd72547
[rlgl] Check for extensions before enabling them ( #2706 )
* [rlgl] Check for extensions before enabling them
* Shift to glad on macOS
* #undef CORE_OPENGL_33
* Remove version hack and fix ASTC compression assumption
* Remove loader from glad
* Use GLAD_MALLOC/FREE instead of malloc/free
* More explicit extension checking
2 yıl önce