summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2019-02-21Remove end-line spacesRay
2019-02-21Corrected issue with OpenURL()Ray
It was not working on Windows 10
2019-02-18Remove compiled libraylib.aRob Loach
2019-02-18Update cgltf libraryRay
Added some comments to loader function...
2019-02-18Corrected issue #758Ray
2019-02-15Fix the image manipulation config flagJens Pitkanen
2019-02-14Fix config.h flagsJens Pitkanen
2019-02-14Corrected path issueRay
2019-02-13Corrected issue #750Ray
2019-02-13ADDED: DrawCircleSector()Ray
2019-02-12Avoid AudioBuffer symbol collision on macOSRay
raudio AudioBuffer internal struct collides on macOS with CoreAudio same name struct. In this case struct has been renamed because is internal to raudio... but probably all system should be redesigned.
2019-02-12Update mini_al.hRay
2019-02-12Corrected issueRay
2019-02-12Include mini_al directly, no separate moduleRay
2019-02-12Corrected function usageRay
2019-02-12Updated external librariesRay
2019-02-11ADDED: GetClipboardText(), SetClipboardText()Ray
2019-02-11Redesigned TextSplit() functionRay
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-24Merge pull request #735 from RobLoach/patch-1Ray
Fix clang++ compilation errors
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-23Remove libraylib.aRob Loach
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-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-19Review raudio commentsraysan5
2019-01-19Allow ShowWindow usage ;)raysan5