aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-10Fixed as issue where strrchr in LoadBMFont would only look for forward ↵Jak Barnes
slashes, instead of backslashes causing strlen to fail on a null string
2019-02-06Update rlgl.hRay
2019-02-06Update rlgl.hRay
2019-02-06Update rlgl.hRay
2019-02-06Reviewed fbo creation and VR systemRay
2019-02-06ADDED: TextToInteger()Ray
Custom implementation that returns -1 if it fails (no negative values supported)
2019-02-06Review ExportMesh() headerRay
2019-02-04Review issue with aspect ratio...Ray
...while using a RenderTexture combined with 3d mode
2019-02-04Delete libraylib.aRay
2019-02-04ADDED: rlLoadTextureDepth()Ray
REDESIGNED: rlLoadRenderTexture() ADDED: rlRenderTextureAttach() ADDED: rlRenderTextureComplete()
2019-02-04ADDED: LoadTextureCubemap()Ray
Probably uncomplete, not tested yet...
2019-02-04Review DrawTextRecEx() formattingRay
2019-02-03Merge pull request #734 from Demizdor/masterRay
Added DrawTextRecEx()
2019-01-29Update utils.cRay
2019-01-29Corrected log namingRay
2019-01-27Added new game: Cat vs RoombaRay
GGJ2019 game
2019-01-24Merge pull request #735 from RobLoach/patch-1Ray
Fix clang++ compilation errors
2019-01-24Merge pull request #736 from RobLoach/patch-2Ray
Fix font cannot be narrowed to type 'int'
2019-01-23Fix font cannot be narrowed to type 'int'Rob Loach
Getting the following strict error.... ``` src/text.c:117:105: error: constant expression evaluates to 2398692640 which cannot be narrowed to type 'int' [-Wc++11-narrowing] ...0x00000000, 0x00000000, 0x00200020, 0x0001b000, 0x00000000, 0x00000000, 0x8ef92520, 0x00020a00... ^~~~~~~~~~ ``` Switching it to an unsigned int fixes it.
2019-01-23Revert the screenWidth changeRob Loach
2019-01-23Fix clang++ compilation errorsRob Loach
clang was complaining about the type conversions. For example... ``` node_modules/raylib-src/src/core.c:1888:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'void *' char *cmd = calloc(strlen(url) + 10, sizeof(char)); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ```
2019-01-23Added DrawTextRecEx()Demizdor
2019-01-23Merge pull request #733 from RobLoach/delete-lib-fileRay
Remove libraylib.a
2019-01-23Remove libraylib.aRob Loach
2019-01-21Added CMD compilation scripts for examplesRay
They could be useful for some people...
2019-01-21Review last PR formattingRay
2019-01-21Remove commentRay
2019-01-21Merge pull request #731 from MarcoLizza/reorganizing-loggingRay
Reorganizing logging
2019-01-21Changing enums, now referenced as int.Marco Lizza
2019-01-21Fixing badly (redefined) enums.Marco Lizza
2019-01-21Merge pull request #730 from pbalcer/examples-web-fix-preloadRay
cmake: fix resource preloading for web examples
2019-01-20Adding function to control the "exit-on-error" behaviour.Marco Lizza
2019-01-20Fixing logging level configuration API.Marco Lizza
2019-01-20Fixing `TraceLog` function to work on levels.Marco Lizza
2019-01-20Reworking log level as incremental.Marco Lizza
2019-01-20cmake: preload resources into web examplesPiotr Balcer
No examples built for the Web platform functioned properly due to lack of resources in the virtual file system provided by emscripten. This patch addresses this problem by adding '--preload-file local_path/resources@resources' emcc option to link flags whenever necessary.
2019-01-20cmake: use ALLOW_MEMORY_GROWTH=1 for web examplesPiotr Balcer
The default memory limit for emscripten applications is 16 mergabytes, which might be to little for some examples, especially given that the resources are also included in that limit. Normally, using this option disables some asm.js optimizations, but there's no such cost for WebAssembly.
2019-01-19Review raudio commentsraysan5
2019-01-19Review window titleraysan5
2019-01-19CMake: pkg-config: fix usage for RedHat-like systems (#728)Ahmad Fatoum
$prefix/lib isn't in pc_path on Fedora 28: [root@fedora-28 ~]# pkg-config --variable=pc_path pkg-config /usr/lib64/pkgconfig:/usr/share/pkgconfig This has the effect that the pkg-config file is written to the correct location but pkg-config --libs raylib doesn't output the correct library path. This fixes this problem by substituting the directory names into the .pc, same as we do with the CMakeLists.txt since #518. This issue popped up during the automated test of the Perl bindings: https://github.com/athreef/Alien-raylib/issues/3
2019-01-19Allow ShowWindow usage ;)raysan5
2019-01-19Merge pull request #725 from dtcristo/patch-1Ray
Remove `raylib-rust`
2019-01-17Renamed ShowWindow() to UnhideWindow() -WIP-Ray
Function provisional renaming... that's not the end of this issue...
2019-01-16Crazy testRay
2019-01-16Remove `raylib-rust`David Cristofaro
2019-01-16Readded alpha clear to rlReadScreenPixels()Ray
When capturing framebuffer, if some element with transparency has been drawn, it retrieves that data... it could be a bit annoying in some situations because we could expect color compositing with background color... It depends on the situation and our needs... but most of the time we don't want that transparency on screenshots.
2019-01-15Update utils.cRay
2019-01-15Let user choose to clear scissor areaRay
2019-01-15Merge pull request #723 from MarcoLizza/trace-log-failing-on-OTHERRay
Trace log failing on other
2019-01-14Fixing `LOG_OTHER` missing.Marco Lizza