aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-01-06Corrected issue with new functionalityraysan5
Using default font texture as base white texture for rectangles reduces draw calls considerably, actually, raygui can be drawn with a single pass!
2018-01-06Reviewed framebuffers cleaningraysan5
Issues when dealing with FBOs
2018-01-02Added function GetFileName()raysan5
Review comments
2018-01-01Removed function DrawRectangleT()raysan5
Functionality integrated in DrawRectangle() and selectable with config flag USE_DEFAULT_FONT_TEXTURE
2017-12-31Reviewed text inputraysan5
2017-12-28Minor tweaksraysan5
2017-12-28Support Wayland display on Linux desktopraysan5
2017-12-28Support UNCOMPRESSED_R32G32B32A32 texture formatraysan5
2017-12-28Review Makefile config flagsraysan5
Support external GLFW usage Renamed some flags for consistency
2017-12-24Renamed function to SetTraceLog()raysan5
I think is clearer this way...
2017-12-24Added function SetTraceLogTypes()raysan5
Trace log messages could be configured with this function to select wich ones are shown
2017-12-24Some formatting tweaksraysan5
2017-12-24Review physac timming systemraysan5
2017-12-23Added next bsd osMartinfx
2017-12-20Updated copyright yearRay San
2017-12-20Corrected issue with SaveImageAs()Ray San
That function depends on SavePNG() and forces platform check on textures module, that behaviour should be changed, platform definition should be only required on core module...
2017-12-20Corrected issue on OpenGL ES compilationRay San
2017-12-20Force OpenAL backend on some platformsRay San
OpenAL audio backend is being forced on HTML5 and OSX
2017-12-20Review code formattingRay San
2017-12-20Some code tweaksRay
Audio module requires a complete formatting review....
2017-12-19Expose GetTime() function to usersRay San
Monotonic time since InitWindow() could be retrieved with this function.
2017-12-18Added some comments on GetTime()Ray
Reviewing GetTime() functionality
2017-12-15Support audio module skip on compilingRay San
Some programs like tools could not require audio support
2017-12-15Updated mini_al to latest versionRay San
2017-12-15Manually review previous PRRay San
2017-12-14make raylib not clash with windows-headeruser
2017-12-14fix for eventmarker missed in first cluser
2017-12-14make GetTime available to user of libraryuser
2017-12-14fix for GetMatrixModelview (former cl)user
2017-12-14optimized matrixrotate function by removing identity matrixuser
2017-12-14make raymath compiling with msvc in c++ modeuser
2017-12-14make matrix stack work closer to old opengl implementationuser
2017-12-14compilefix for function declaration (win only)user
2017-12-14added debug-event-markers for opengl so that you're able to set markers for ↵user
renderdoc or other gpu debuggers what your program is currently doing
2017-12-14added possibility to get modelview matrix from rlgl to be able to send it to ↵user
shaders
2017-12-14fixed function declaration differ from implementationuser
2017-12-14proper if-clauses for disabling functionality in text.cuser
2017-12-14added proper define checks for png-save if it's disableduser
2017-12-13Corrected crash on shader loadingRay
If shader file could not be found on loading it crashed, instead added fallback to default shader!
2017-12-11Remove rres supportRay
Let the user choose if using rres external library
2017-12-11Remove Meson build systemAhmad Fatoum
Less maintenance overhead that way, given that make/CMake now also do library versioning.
2017-12-11Add library versioning to Make/CMake build systemsAhmad Fatoum
See #401 for the discussion. Also bumps version number to 1.9.2 without the -dev, because neither ELF nor MachO like such a suffix. The -dev suffix will have to be restricted to the git tags.
2017-12-10Fix CI builds after mini_al changesAhmad Fatoum
2017-12-10Fix typo in preprocessor macroAhmad Fatoum
2017-12-09Added Wayland supportraysan5
Updated to latest GLFW library and working on Wayland support, still looking how to implement it on raylib because it just exposes PLATFORM_DESKTOP and defaults to X11 windowing system on Linux...
2017-12-05Removed OpenAL Soft dependency on buildingRay San
OpenAL Soft backend is still available in audio module, I'm thinking if exposing it for building in some way or just left it there for advance users to switch to it manually in case of necessity...
2017-12-05Updated external libraries dependenciesRay San
Added dr_wav for a future use
2017-12-05Updated library features and dependenciesRay San
2017-12-05Merge pull request #413 from mackron/dr/mini_alRay
mini_al integration
2017-12-05Update mini_al.David Reid