| Age | Commit message (Collapse) | Author |
|
|
|
* swapped comments, expanded comment for clarity
* revert alignments
* adjusted for consistency
|
|
Just simplified code a bit
|
|
|
|
Actually OpenAL is not used any more, it should be using CoreAudio
|
|
|
|
Keeping original API
|
|
* add api FIFO based character input.
* rename input character functions
* replace tab to space x4 #1012
|
|
* Fix camera not working problem at align z direction. #924
* replace tab to space x4
|
|
|
|
Uses fewer vertexes than using DrawCube() or DrawSphere() for points. The small line is on analogy to the code for DrawPoint() in shapes.c.
|
|
|
|
|
|
|
|
|
|
|
|
* [rlgl] Create function `rlUpdateMeshAt`
* [rlgl] Update function `rlUpdateMeshAt`
|
|
|
|
|
|
Corrected bug when loading a RenderTexture texture passing NULL data.
|
|
|
|
At least on Linux, CMake seems to add automatically
the '-rdynamic' flag. As a result, Emscripten
generates a fat HTML file that does not work.
Removing it allows HTML+JS+WASM generation.
|
|
|
|
* explained a bit more the core_window_letterbox example
* fixed a few 'ups' moments that could lead to mild head pain and time loss
|
|
|
|
* new linux makefile for Android portages
* Revert "projects: CMake: bump up minimal raylib version (#983)"
This reverts commit 82306af111894397cb2028ac270f2916aa615fab.
* new PR for upstream
* for Raysan
|
|
ADDED: CodepointToUtf8()
|
|
|
|
RENAMED: TextCountCodepoints() -> GetCodepointsCount()
|
|
|
|
identity (#999)
|
|
* Removed Unused Uniforms
uniform vec3 viewUp;
uniform float deltaTime;
* Removed Unused uniforms
uniform vec3 viewUp;
uniform float deltaTime;
* Updated Source
Added - #define PLATFORM_DESKTOP line for desktop users.
This now will correctly find the proper glsl version for the raymarching.fs file.
Removed - Uniforms --> deltaTime and viewUp. Including the code that was setting them.
They were never used and they were triggering a log warning.
Removed - The const from both screenWidth and screenHeight.
Now they can be used to update the shader resolution when screen is resized.
NOTE : This is a quick fix and probably not the best idea.
Added - IsWindowResized() to check if screen is resized.
If window is resized then width, height and shader resolution are updated.
Changed - MIT tag at bottom right color value to BLACK. Now it's easier to see.
* Closer Match to original code
* Removed the PLATFORM_DESKTOP Define
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Initial commit of addition for GLTF materials.. should support loading more than just albedo map.
* Clean up
* fixed seg faults and leaks
* temp don't overwrite defuse colour when rendering
* undid something dumb!
* correctly mixed diffuse map color when rendering to preserve not overwrite it
|
|
|
|
|
|
|
|
|
|
|
|
- Improved LoadBMFont()
|
|
Now it accepts a ';' separated list of extensions, useful to check multiple extensions
|
|
Get the unicode equivalent characters (as int array) from a UTF-8 text array... maybe this function is renamed to be clearer to users...
|