summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
AgeCommit message (Collapse)Author
2021-06-23WARNING: BREAKING: Functions renamed!Ray
RENAMED: GetCodepoints() -> LoadCodepoints(), now codepoint array data is loaded dynamically instead of reusing a limited static buffer. ADDED: UnloadCodepoints() to safely free loaded codepoints RENAMED: GetNextCodepoint() -> GetCodepoint()
2021-06-22Review and un-expose InitTimer()Ray
Actually it's not required for SUPPORT_CUSTOM_FRAME_CONTROL
2021-06-22Formatting reviewRay
2021-06-21core: added `GetMouseDelta()` (#1832)Adrian Guerrero Vera
* core: added `GetMouseDelta()` Thanks to previousPosition added by raysan it is now possible to create the GetMouseDelta() function. Returns a Vector2 with the difference between the current and previous position of the mouse in a frame. Useful for creating camera scrolling, among others. * Added changes noted by raysan
2021-06-17RENAMED: `SwapBuffers()` -> `SwapScreenBuffer()`Ray
Avoid possible symbol collisions
2021-06-17WARNING: Exposed `SUPPORT_CUSTOM_FRAME_CONTROL` #1729Ray
2021-06-17RENAMED: MeshTangents() -> GenMeshTangents()Ray
RENAMED: MeshBinormals() -> GenMeshBinormals()
2021-06-10Review code formattingRay
2021-06-10Review some commentsRay
2021-06-10Reviewed functions descriptionRay
Replaced: Returns -> Get
2021-06-10Reviewed Input variables and commentsRay
2021-06-10Corrected bug on enumRay
2021-06-10Added some enum commentsRay
2021-06-05Minor format tweaksraysan5
2021-06-03WARNING: BREAKING: Consistency renamingsRay
RENAMED: InitAudioStream() -> LoadAudioStream() RENAMED: CloseAudioStream() -> UnloadAudioStream()
2021-06-03Better collisions (#1803)Crydsch
* review collisions ray-box and ray-sphere * Applied raysan's refactor Improved GetRayCollisionBox * Replace GetRayCollisionGround with GetCollisionQuad * Update example core_3d_picking * Update example models_loading * Fixed issues after merge * remove debug stuff Co-authored-by: Cry dsch <[email protected]>
2021-06-01Update docs for supported blend modes (#1801)Marco G. Maia
2021-05-31RENAMED: enum Gestures -> GestureRay
Consistency tweak
2021-05-31WARNING: BREAKING: RENAMED: RayHitInfo to RayCollision #1781Ray
- RENAMED: RayHitInfo to RayCollision - RENAMED/REDESIGNED: Multiple Ray collision functions to be more consistent and return RayCollision data -WIP-
2021-05-30REVIEWED: exit() on LOG_FATAL instead of LOG_ERROR #1796Ray
2021-05-29Review some commentsRay
2021-05-25Review raylib structs commentsRay
2021-05-25Remove line break in DrawTextRecEx()Ray
2021-05-22Some code tweaks for consistencyRay
2021-05-22Minor comments tweaksRay
2021-05-21Update version to 3.8-dev to note breaking changesraysan5
Some breaking changes were introduced lately, it's better to note that current version is not 3.7 anymore...
2021-05-20WARNING: RENAMED: IsMusicPlaying() -> IsMusicStreamPlaying()Ray
2021-05-20WARNING: RENAMED: MeshBoundingBox() -> GetMeshBoundingBox()Ray
Renamed for consistency with other function in raylib.
2021-05-20Comment minor tweakRay
2021-05-11Reviewed latest PRRay
REMOVED: DrawBillboardEx()
2021-05-11Redesigned billboards - added rotation/pro functions (#1759)nobytesgiven
* Redesigned billboards - added rotation/pro functions * updated parameters Co-authored-by: nobytesgiven <[email protected]>
2021-05-10Add RenderPolyLinesEx routine (#1758)Lambert Wang
Co-authored-by: Lambert Wang <[email protected]>
2021-05-08Added support for additional mouse buttons (#1753)Lambert Wang
* Added support for additional mouse buttons * Renamed mouse button enum Co-authored-by: Lambert Wang <[email protected]>
2021-05-04Expose RAYLIB_VERSION in raylib.h #1747Ray
2021-05-03Comment tweakRay
2021-04-27Fixed definition of UNCOMPRESSED_R8G8B8A8 (#1740)Rabia Alhaffar
2021-04-26REMOVED: GenMeshDefault()Ray
2021-04-23Update raylib.hRay
2021-04-22Remove trail spacesRay
2021-04-21Reviewed file commentsRay
2021-04-20ADDED: UpdateMeshBuffer()Ray
2021-04-06REDESIGNED: Vr stereo modeRay
2021-04-06Reviewed Vr stereoRay
2021-04-06REDESIGNED: Vr stereo renderingRay
2021-04-06Reorganized shaders functionsRay
2021-04-06Minor comment tweaksRay
2021-04-05Reorganized functions by moduleraysan5
2021-04-04Merge branch 'master' of https://github.com/raysan5/raylibraysan5
2021-04-04REDESIGNED: Shapes texture/rec moved to shapes moduleraysan5
2021-04-03Make SaveFile* callbacks return a boolean (#1697)Rob Loach