MrSwedish
23fabb1d67
Prevent INVALID_SOCKET to be defined twice on linux ( #1993 )
i got an error because of this lol
3 years ago
Neil Barkhina
e9d3d4fa1f
Implemented GetGamepadName() for emscripten ( #1986 )
* implemented GetGamepadName for emscripten
* updated gamepad to use existing name as arary
* removed unnecessary platform_web check
3 years ago
Hristo Stamenov
024adc2538
Add find opengl for widnows too. ( #1985 )
* Add find opengl for widnows too.
* Also fix set LIBS_PRIVATE to bi similar to linux and apple targets
3 years ago
raysan5
72983d4e20
Typo
3 years ago
raysan5
b63c2619e3
Update Makefile for web compilation
Some flags are only for the linker, not the compiler
3 years ago
Ray
40ec7a6236
Update core.c
3 years ago
Ray
352ea80a1f
REVIEWED: Vox loader
3 years ago
procfxgen
a422d2fc8b
Vox loaded ( #1981 )
* new models_magicavoxel_loading example
* Portable header-only file "magicavoxel_loader.h" for MagicaVoxel loader example.
* models_magicavoxel_loading example added to CMakeLists.txt and Makefile
* fix models_magicavoxel_loading example for linux.
* * vox_loader into "src/external/vox_loader.h"
* vox file support for "models.c"
* updated example "models/models_magicavoxel_loading.c"
* * Fix Vox_FreeArrays (removed memory leak)
* * removed magicavoxel_loader.h
* * Revert vs2019 solution
* * vox_loader.h -> Support custom memory allocators
* vox_loader.h -> Reverse Y<>Z for left to right handed system
* models/models_magicavoxel_loading.c -> fix model center
* * vox_loader.h -> Removed Raylib dependencies
* * Changed Vox_LoadFileName to Vox_LoadFromMemory
3 years ago
Ray
803094f41f
REVIEWED: Touch input system #1975 #1960
- ADDED: `GetTouchPointCount()` to core module, removed from gestures module.
- Support multiple touch points: `MAX_TOUCH_POINTS`.
3 years ago
Ray
2c13e43c32
Review font loading log info
3 years ago
Nikolay Krasheninnikov
18d73eef19
Fixes target direction for first person camera mode. ( #1977 )
Co-authored-by: Nikolai Krasheninnikov <nikolai.krasheninnikov@kronshtadt.ru>
3 years ago
Tristan Schulz
7bf31dd468
Fixed loading obj models with no materials ( #1984 )
3 years ago
Steven Schveighoffer
1a6adc5f74
Fix dynamic library issues on Macos ( #1978 )
3 years ago
raysan5
b15715ca80
Merge branch 'master' of https://github.com/raysan5/raylib
3 years ago
raysan5
8d3ff3fda8
Updated Makefile for latest Android NDK r32 LTS
It seems now it's required to use archiver `llvm-ar`
3 years ago
Tristan Schulz
24a38dbd3f
[models] LoadGLTF fixed missing transformations and nonroot skinning problem ( #1964 )
* Fixed gltf missing transforms on load
mend
* extracted Matrix calculation in to static method and added skinning check
* fixed formatting
3 years ago
raysan5
4120f12375
REVIEWED: Vox loading, mostly formating
3 years ago
procfxgen
dfc465ca6d
new models_magicavoxel_loading example ( #1940 )
* new models_magicavoxel_loading example
* Portable header-only file "magicavoxel_loader.h" for MagicaVoxel loader example.
* models_magicavoxel_loading example added to CMakeLists.txt and Makefile
* fix models_magicavoxel_loading example for linux.
* * vox_loader into "src/external/vox_loader.h"
* vox file support for "models.c"
* updated example "models/models_magicavoxel_loading.c"
* * Fix Vox_FreeArrays (removed memory leak)
* * removed magicavoxel_loader.h
* * Revert vs2019 solution
3 years ago
raysan5
93168304cd
Update shell.html
3 years ago
Ray
9ff8ad853c
Update raygui.h
3 years ago
Ray
59e7275464
REVIEWED: Glyphs
3 years ago
Ray
fa79ae8a3d
Merge branch 'master' of https://github.com/raysan5/raylib
3 years ago
Ray
9362eaf9c6
REVIEWED: Naming: length vs size
3 years ago
atticus
dfadb3ee37
fix various memory leaks ( #1969 )
3 years ago
Ray
6e76baa6a9
WARNING: BREAKING: RENAMED: Font struct variables
RENAMED: GetCodepointsCount() -> GetCodepointCount()
RENAMED: GetTouchPointsCount() -> GetTouchPointCount()
3 years ago
Ray
a0f8682905
REVIEWED: <name>Count for consistency
Following english rules, it should be singular name before Count.
3 years ago
Tristan Schulz
e8fa7ceb79
[models] Fixed counting loop for face amount per material ( #1967 )
3 years ago
Ray
68bcfa1192
Minor tweak
3 years ago
raysan5
d98e61c6eb
Minor format tweaks
3 years ago
Hussein Sarea
66c6ec4465
Add pyraylib ( #1961 )
3 years ago
Ray
936199d8de
Review dates
3 years ago
Ray
18af18479f
REVIEWED: ExportWaveAsCode()
3 years ago
Ray
b7ae0df3d9
REVIEWED: Decouple `DrawMesh()` and `DrawMeshInstanced()` #1958
3 years ago
Richard Smith
cac856119c
Change GetColor to take unsigned int ( #1954 )
3 years ago
irishgreencitrus
1286bc076f
Add raylib.v binding ( #1955 )
Added raylib.v binding for Vlang
3 years ago
Ray
3d33c559e7
REVIEWED: Examples compilation
3 years ago
Ray
14e443afba
REVIEWED: OpenGL 1.1 compilation issue
3 years ago
Ray
7749a2805c
UPDATED: raygui to latest version -WIP-
Note this new raygui version embeds ricons and `GuiTextBoxMulti()` is not working properly
3 years ago
Ray
a04dbe7ffd
Update shaders_shapes_outline.c
3 years ago
Ray
913f185f82
Renamed some static functions for more consistent naming
3 years ago
Laurentino Luna
6575d31379
Fix tcc not finding emmintrin.h ( #1947 )
* Fix tcc not finding emmintrin.h
This allows to compile raylib with tcc with no errors.
* Remove __TINYC__ check from stb_image.h
This will be placed under textures.c
* Move tcc check to textures.c
Avoiding to change stb_image.h
3 years ago
raysan5
7c1889c282
REVIEWED: Support mouse wheel on x-axis #1948
3 years ago
Luiz Pestana
45fd75952d
Revert "Ignore generated example binaries ( #1884 )" ( #1946 )
This reverts commit 4a01139c8d
.
3 years ago
Ray
51fbde178f
Update shaders_shapes_outline.c
3 years ago
Ray
b154bc33f5
Added note on GLFW custom allocators for the future
3 years ago
Ray
d98779abef
Minor tweak to avoid false error logs
3 years ago
Ray
aefdb9f9cf
REMOVED: Old function names defines
As far as next raylib version will be 4.0, no backward compatibility hacks will be maintained.
3 years ago
Ray
ff523d55ac
Updated raygui #1939
3 years ago
atticus
6d20430ccc
add NULL check ( #1925 )
3 years ago
Ray
a5beb940f8
Remove trailing spaces
4 years ago