summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
AgeCommit message (Collapse)Author
2018-02-12BREAKING CHANGE: Renamed function for consistencyRay
Rename: GetHexValue() renamed to ColorToInt() Added: ColorToHSV()
2018-02-05Added function LoadShaderCode()Ray
Allows loading of shader from text code string directly
2018-02-04Incremeted version to align with CMakeraysan5
2018-02-04Updated raylib versionraysan5
Note that this version is under development and could be buggy on some platforms...
2018-02-04Reviewed window initializationraysan5
In case graphic device could not be created it returns false instead of failing with an error tracelog (and consequently closing the program). Window initialization success could be checked with new function IsWindowReady()
2018-02-03Return false from InitWindow if glfwInit or glfwCreateWindow failsAhmad Fatoum
You can't do much with raylib if glfwInit or glfwCreateWindow fails, currently it just exits by means of TraceLog(LOG_ERROR. User code, however, might want to fall back to a text-only UI or display a warning if raylib can't be used.
2018-02-02Added function DrawRectangleLinesEx()Ray San
2018-01-31Corrected typoRay
2018-01-31Added missing keys definitionsRay
2018-01-18Added function: ImageMipmaps()Ray
2018-01-17Reviewed function GenImagePerlinNoise()Ray
Added support for noise image offset
2018-01-11Added new function: ImageAlphaCrop()Ray
2018-01-07Added new image functionsraysan5
- Added: ImageAlphaClear() - Added: ImageAlphaPremultiply() - Reorganized some functions
2018-01-06Improved pixel formats supportraysan5
- Renamed enum TextureFormat to PixelFormat for consistency - Added support for pixel format UNCOMPRESSED_R32 - Using GetPixelDataSize() where required
2018-01-06Added function declarationraysan5
2018-01-06Added function: GetPixelDataSize()raysan5
Just found I need that function...
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-28Support UNCOMPRESSED_R32G32B32A32 texture formatraysan5
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-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-15Manually review previous PRRay San
2017-12-14make raylib not clash with windows-headeruser
2017-12-14make GetTime available to user of libraryuser
2017-12-14fix for GetMatrixModelview (former cl)user
2017-12-11Remove rres supportRay
Let the user choose if using rres external library
2017-12-05Updated library features and dependenciesRay San
2017-12-05Merge pull request #413 from mackron/dr/mini_alRay
mini_al integration
2017-12-05Change version number for developRay
Updated raylib version to 1.9-dev for development pourposes. Next raylib version is planned to implement a big amount of changes, so the version bump.
2017-11-18mini_al: Unify the buffer system for Sounds and AudioStreams.David Reid
2017-11-14Bug fixes for Music with mini_al.David Reid
2017-11-12Work on porting Music to mini_al.David Reid
2017-11-12Initial work on porting AudioStream to use mini_al.David Reid
2017-11-12Remove PLATFORM_ checks from raylib headerraysan5
Now header is truly multiplatform... Actually still a small pending check on XBOX gamepad controls that hopefully will be removed with next GLFW 3.3
2017-11-12Allow custom distortion shader - IN PROGRESS -raysan5
2017-11-12Rename SoundInternal to SoundData for consistency with MusicData.David Reid
2017-11-12Initial work on adding support for mini_al.David Reid
2017-11-05SetShaderValue take const pointerWilhem Barbier
2017-11-04Corrected function nameRay
2017-10-25Corrected ImageTextEx()Ray
- Added new function: GenImageColor() ImageDraw() should be reviewed... specially alpha blending...
2017-10-17Review VR functionalityRay San
To be more generic and configurable
2017-10-12Review comments about raylibraysan5
2017-10-11Check to avoid bool redefinitionRay San
2017-10-02Working on Makefiles...Ray San
2017-09-30Review gradient rectangle drawingRay
Added: DrawRectangleGradientV() Added: DrawRectangleGradientH()
2017-09-18Added mesh generation functionsraysan5
2017-09-08Added new functionsraysan5
SetWindowTitle() GetExtension()
2017-08-27Added function DrawRectangleGradientEx()raysan5
Moved function DrawRectangleT() from text module to shapes Added some comments