summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2021-02-05Designing some callbacks -WIP-Ray
2021-02-02REVIEWED: LoadShaderProgram() #1563raysan5
Try to avoid a possible false-positive memory leak...
2021-02-02Update raudio.craysan5
2021-02-02Update loading of gltf animation. (#1561)hristo
This is to account for GLTF info being more like instructions on how to build your animation instead of verbose description of each pose.
2021-01-31REVIEWED: Gamepad system, specially for RPIraysan5
2021-01-30Use local (") includes for GLFW since it is included with the source tree. ↵Jeffery Myers
(#1557) This change helps some platforms produce fewer errors/warnings. Co-authored-by: Jeffery Myers <[email protected]>
2021-01-28REVIEWED: SetGamepadMappings()raysan5
return value for all platforms
2021-01-28Gltf animation support (#1551)hristo
* Added example for gltf animation and split some functions for loading model animations into IQM and GLTF similar to how models are being loaded. * Removed wrongly duplicated function * Bone loading for gltf model (not working at this point) * Loading info about vertex to joint connection but animation is still not working * Skeleton and pose is correctly loaded. Need to communicate about interpolation in GLTF * The model almost looks like a real person on animation. * Fixed model loading with bones. Also updated license info on the model. * Cleaned up some code and updated examples. * Fix identation issues * Fix identation issues * Fix identation issues
2021-01-26Documentation cmake (#1549)hristo
* Documenting the compiler flags * Moved some android compiler flags and added documentation on them too. * Some more restructuring. Removed unnecessary comments that were self described by the code. Added some more explanations around certain parts of CMake and especially around compiler flags.
2021-01-25Removing config.h.in file (#1546)hristo
CMake relied on this file for configurations and also was interfering in the regular config.h by having a separate definition if building with CMake. This was not entirely correct so instead we will define compile time definitions separately through CMake (CompileDefinitions.cmake) and also will use the provided EXTERNAL_CONFIG_FLAGS that I found that will not use config.h in through the build process. I also introduced a new compiler option (CUSTOMIZE_BUILD) that when OFF will use the default config.h and when ON will show other options for redefining your own options. Fixed an error in rlgl.h where if you have both RLGL_STANDALONE and SUPPORT_VR_SIMULATOR you get a compile time error.
2021-01-25Removing test file. (#1545)hristo
This test file is just testing compilation with the library works correctly but is no longer needed because: - it is not cross platform - it taps into the CTest system which is better suited for real unit/integration tests - it can be incorporated into the pipeline of github actions instead in the future
2021-01-22ADDED: UploadMesh() #1529Ray
Upload mesh data to GPU and get VAO/VBO identifiers
2021-01-22Remove automatic pointer lock on mouse click #1513Ray
2021-01-22Review typoRay
2021-01-22Remove STATIC and SHARED variables. (#1542)hristo
As described in the official documentation https://cmake.org/cmake/help/v3.0/variable/BUILD_SHARED_LIBS.html this flag is global by default and controls if the library will be built as a shared or a static library allowing us to define only one call to the add_library function (without specifying its type). It is also added as an option to be visible in CMake GUI applications.
2021-01-21ADDED: SetGamepadMappings() #1506Ray
2021-01-20REVIEWED: physac module and examples #1525Ray
2021-01-20Merge branch 'master' of https://github.com/raysan5/raylibRay
2021-01-20Review screen capture / gif recording #1540Ray
2021-01-16Fix cmake build error dirent (#1536)hristo
* Better ignore support for idea projects. Added a wildcard at the end because different configurations would have a diffeerent build directory. * Removed external from being a relative include directory for target raylib. Fixes #1533
2021-01-16Fix absolute path handling in GetFileName and GetDirectoryPath (#1534) (#1535)Gil Barbosa Reis
2021-01-15Review commentRay
2021-01-15Review warningRay
2021-01-14REVIEWED: DecompressData()Ray
Corrected bug!
2021-01-13Big cmake changes (#1514)hristo
* Delete emscripten.cmake This file is not needed at this point. EMSDK provides a toolchain file that has a lot more things in it and is better supported. Project currently works fine with the documentation provided in Emscripten SDK on how to build projects. * First pass file separation. The main two files are cleaner now. Only important things can be seen. Major changes include: - raylib_static is now the alias instead of raylib - Repeating segments are removed and pulled into separate files into <root>/cmake - File is reordered to make more sense - Installs are better structured - Library is build into an output directory "raylib" instead of "src" - All public header files are now set as a public header file - Source files need to be listed (it is a bad practice to capture them using wildcards and file globs) - CMakeLists are better commented * Second pass on the example dirs. They are quite complex so I'm more hesitant to do major changes. Also it works pretty well. Noticed that I forgot one of the seperated files and added it into src/CMakeLists.txt. * Returned the header copy as it was convenient to have the public headers copied. * A better description to the variable RAYLIB_IS_MAIN Co-authored-by: Rob Loach <[email protected]> * Remove debug message Co-authored-by: Rob Loach <[email protected]> * Improvements based on review. * Simplify the install condition to not be platform specific as it was before. Co-authored-by: Alexander Neumann <[email protected]> * Remove some CMAKE variables as they don't affect the build in any way Co-authored-by: Alexander Neumann <[email protected]> Co-authored-by: Rob Loach <[email protected]> Co-authored-by: Alexander Neumann <[email protected]>
2021-01-12Update miniaudio to v0.10.30 #1518Ray
2021-01-12REDESIGN: Compresion APIRay
Now it compresses/decompresses valid DEFLATE streams instead of zlib streams. It uses the minimal and efficient libraries: sdefl/sinfl.
2021-01-12Add commentsRay
2021-01-12Reorder functionRay
2021-01-12Reorder typedefs in physac.h to be in header part (#1528)Dmitry Matveyev
2021-01-09rlOrtho() reverted changeRay
2021-01-07It's top-bottom not bottom-top in GL space. (#1517)Jeffery Myers
2021-01-06Fix keyboard state change detection on RPI (#1488)badlydrawnrod
* Fix keyboard state change detection on RPI * Rework RaspberryPi evdev keyboard input. - Extract evdev keyboard handling into PollKeyboardEvents() - Move keyboard polling to main thread - Rename EventThreadSpawn() to ConfigureEvdevDevice() as it doesn't necessarily spawn threads - Remove unused code (KeyEventFifo and lastKeyPressed) * Replace tabs with 4 spaces.
2021-01-06Include SUPPORT_DATA_STORAGE flag for building with CMake (#1515)Kirottu
* Update CMakeOptions.txt * Update config.h.in
2021-01-06 Remove unused condition in 'GenerateMipmaps' function for ↵Victor Gallet
GRAPHICS_API_OPENGL_11 (#1496)
2021-01-06Review rlOrtho() to avoid return in the middle of the functionraysan5
I usually try to avoid any return in the middle of functions, I try to keep them always at the end of the functions.
2021-01-06Don't create an ortho matrix when the viewport is 0 in any axis. (#1504)Jeffery Myers
* Don't create an ortho matrix when the viewport is 0 in any axis. Not all compilers divide by 0 and return inf, some segfault. The matrix is not used by anything when minimized, so it just needs to not be called. * Better fix that always ensures the rlgl matrix is always valid * Better fix that always ensures the rlgl matrix is always valid
2021-01-03Removed a repeating allocation of memory (#1507)hristo
Resolves #1495 This line allocated some memory that was already allocated in the beginning of the function and was essentially creating a leak.
2021-01-02Update mappings.h in glfw using GenerateMappings.cmake (#1505)Chris
2021-01-02Update year to 2021raysan5
2020-12-31 Modify the check condition for the screen window height and width. It can't ↵Victor Gallet
be less than zero because it's an unsigned int (#1497)
2020-12-31 Avoid dereferencing a null pointer in the 'LoadMaterials' function in the ↵Victor Gallet
models module (#1498)
2020-12-31 Avoid dereferencing a null pointer in the 'LoadSounsFromWave' function if ↵Victor Gallet
the audioBuffer is null (#1499)
2020-12-30Add a current monitor function for window mode windows. (#1492)Jeffery Myers
2020-12-30lookup the returned monitor in the list of monitors to get an index. (#1490)Jeffery Myers
2020-12-29Review code formattingraysan5
2020-12-29Faster version of ImageClearBackground and ImageDrawRectangleRec (#1487)Jeffery Myers
* Don't use DrawRect to clear an image, a pixel loop is an order of magnitude faster. * Update ImageDrawRectangle to be faster too.
2020-12-29Monitor utilites (#1485)hristo
* Added a new utility function to get the current monitor. Some of the other functions rely on passing on a monitor id but we only have a function for querying the count of monitors available. * Updated the comment to correctly reflect the function action
2020-12-29I noticed that toggle fullscreen always gets the primary monitor when its ↵hristo
more intuitive to use the monitor that the window is currently in. (#1486) This monitor should even probably be passed as an id instead to make it more consistent with the rest of the API but this would break existing applications so I am hesitant to change the function signature directly.
2020-12-26Review DrawLineBezierQuad(), formating and aprameters orderraysan5