| Age | Commit message (Collapse) | Author |
|
|
|
This reverts commit 2d6fb5c628068757387525e190c3afdbe33ae9c6,
and adds a fix for Alien::raylib's test failures.
The tests failed because the resulting static library didn't reexport
GLFW symbols. As a fix, we now have GLFW create a CMake "object library"
target that we can link with both the static and shared raylib.
This is arguably ugly... Proper fix would probably be a GLFW upstream
object library target.
Closes #536.
|
|
Makefile: Remove unnecessary -no-pie for older GCC support
|
|
Currently, if:
* GCC doesn't supports -no-pie: Build error
* GCC supports -no-pie
* GCC is not configured with --enable-default-pie: No-op
* GCC is configured with --enable-default-pie:
Slightly worse performance because we still generate -fpie code
(-pie affects linker, -fpie affects compiler)
So instead of probing for existence of -fno-pie -no-pie, remove it altogether.
Fixes #540: Build breakage on Debian 8 with gcc 4.9.
|
|
This reverts commit 0adb4b67de6dfe3f7a0a557130dffc3b8f4d6a43,
because it failed tests for Alien::raylib:
http://www.cpantesters.org/distro/A/Alien-raylib.html
|
|
|
|
|
|
Review raylib_icon resource
|
|
CMake+CI: Add Wayland configuration
|
|
|
|
|
|
Makes it easier to support Wayland later on.
|
|
We need the CMake stuff for wayland configuration.
Otherwise, we would have to replicate that ourselves.
This is the full 7ef34eb06de54dd9186d3d21a401b2ef819b59e7 tree except
for tests/ examples/ and docs/
|
|
|
|
Panders to the idiosyncrasies of my work flow:
I have my raylib build directory mounted as a VirtualBox vboxfs for use
with my Linux VM, but vboxfs doesn't support symlinks, while raylib shared
library versioning on Unix expects symlinks to work.
If this happens, library versioning is now disabled on Unix with
an error message instead of just failing the build.
|
|
|
|
|
|
|
|
|
|
|
|
Patch implicit type
|
|
|
|
|
|
Try to avoid types conflict with Font
|
|
- Preparing MP3 files support
- Jumped version to raylib 2.0-dev (too many breaking changes...)
|
|
- Renamed Begin3dMode() --> BeginMode3D()
- Renamed Begin2dMode() --> BeginMode2D()
- Renamed End3dMode() --> EndMode3D()
- Renamed End2dMode() --> EndMode2D()
|
|
- Some examples tweaks
- Reviewed ImageFormat()
- Use float for text fontSize
|
|
Useful to parse raylib.h to generate raylib-lua and Notepad++
intellisense XML info
|
|
Just added a fallback in the meantime...
|
|
As stated in the note, I'm not sure if math is right, just followed a
reference implementation...
|
|
- Added Vector3OrthoNormalize() to raymath.h - not sure if it is correct
- Implemented MeshBinormals() - Mesh struct has not a place for them...
- Updated model_material_pbr example - tested but not working on my GPU
(old Intel HD), actually, it never worked on it...
|
|
|
|
|
|
Also added new compilation FLAGS for that pourpose
|
|
|
|
Allow compiling the library with support for automatic screen capture
(KEY_F12)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
In case mesh loading fails, a cube is generated instead!
|
|
|
|
|
|
Add more key definitions
|
|
|
|
Seems tcc doesn't provide __sync_*. See #435.
|
|
Reported in #435, tcc generates out-of-line definitions for inline
symbols, something it shouldn't. This fix punishes tcc for that
by making applications it compiles (slightly) larger...
|
|
|