Ray
b3f75b91ff
REDESIGNED: Vr stereo mode
il y a 4 ans
Ray
84d0d21f23
Reviewed Vr stereo
il y a 4 ans
Ray
71b86bf4d0
REDESIGNED: Vr stereo rendering
il y a 4 ans
Ray
109d00cb14
Reorganized shaders functions
il y a 4 ans
Ray
551944e15b
Minor comment tweaks
il y a 4 ans
raysan5
b52cd8f605
Reorganized functions by module
il y a 4 ans
raysan5
66f3434571
REDESIGNED: Shapes texture/rec moved to shapes module
il y a 4 ans
Rob Loach
d58b7b509e
Make SaveFile* callbacks return a boolean ( #1697 )
il y a 4 ans
raysan5
c21baf0d92
ADDED: GenMeshDefault() #1556
il y a 4 ans
raysan5
aed0fee2ca
Remove trailing spaces
il y a 4 ans
raysan5
cdc3754449
ADDED: Support model normal matrix location #1691
il y a 4 ans
raysan5
23a764190e
ADDED: LoadShaderFromMemory() #1690
il y a 4 ans
raysan5
bc6b16beb2
REVIEWED: DrawTexturePoly()
il y a 4 ans
Ray
f9bab14fdb
REVIEWED: DrawMeshInstanced()
il y a 4 ans
Ray
cba412cc31
WARNING: BREAKING: rlgl redesign -WIP-
rlgl module has been completely redesigned to move Mesh/Material structures to [models] module. Still some work to do, broken elements:
- [models] OpenGL 1.1 mesh rendering: DrawMesh()
- [models] Mesh Instancing: DrawMeshInstanced()
- [models] Stereo rendering: DrawMesh()
- [models] GL_FLOAT, GL_UNSIGNED_INT exposed
- [models] GenMeshCustom()
- [rlgl] GenTexture*() functions removal?
il y a 4 ans
chriscamacho
9569d6a802
Add DrawTexturedPoly and example ( #1677 )
* adds DrawTexturedPoly with example
* the actual example ... ahem
* moved DrawTexturePoly to textures function and example
NB function name changed to fit with other DrawTextureXXX functions
(no "d" )
Co-authored-by: codifies <you@example.com>
il y a 4 ans
Ray
bb73a8089a
Reviewed DrawFPS() comment
il y a 4 ans
Ray
9bea64b5e4
REMOVED: DrawGizmo()
This is a very simple and specific implementation that should be better addressed by the users
il y a 4 ans
Ray
2ce28f75ad
WARNING: BREAKING: REDESIGNED: rlgl module
- Many functions renamed to follow rl*() convention
- Some internal functions exposed in the API
- Some functionality moved to other modules
- Reorganized all functions by categories
- Make sure it keeps working with OpenGL 1.1 and 2.1
il y a 4 ans
Ray
24dae29a03
Review latest PR and some formatting
il y a 4 ans
Jeffery Myers
2c0a533948
[AUDIO] Music Looping enhancements ( #1665 )
* Add loop functions for music files.
Tell xm tracker to loop tracker when loop state changes.
Don't let looped xm tracker streams restart, they are infinite
Use modulo to make time tracker for xm looped streams work correctly.
* Remove loop functions, set XM loop in update based on flag.
Formatting cleanups.
Co-authored-by: Jeffery Myers <JefMyers@blizzard.com>
il y a 4 ans
Ray
ed4ca6a7f3
WARNING: BREAKING: rlgl module redesign -WIP-
- Some rlgl functions have been moved to core
- Some functions have been made internal to rlgl
- rlgl functions prefixed with rl*()
il y a 4 ans
Ray
a76fcaba3e
BIG CHANGE: REDESIGNED: Vr device simulator #1582
Vr simulator has been moved to core module and completely redesigned. Now user is in charge of stereo-render fbo and also in full control of distortion shader. Code is a bit more complex but better aligned with other raylib examples.
il y a 4 ans
Ray
5049137715
Added KEY_NULL #520
il y a 4 ans
frithrah
2f367a905e
Changed DrawRing and DrawCircleSector angle params from int to float to allow greater accuracy. ( #1656 )
Co-authored-by: Simon <simon@frithrah.com>
il y a 4 ans
Ray
3e25760950
REMOVED: GetMouseCursor()
This function could be confusing depending on the context, it's better to let the user track the current active cursor
il y a 4 ans
Ray
8527dbc6e2
WARNING: REMOVED: GamepadNumber enum
il y a 4 ans
Ray
07d82a91c5
WARNING: BREAKING: RENAMED: camera.type to camera.projection
il y a 4 ans
Ray
a1d9987e7c
WARNING: BREAKING: REVIEWED some enums naming
Now enum names are more consistent between them.
il y a 4 ans
Ray
664fbb87f5
REVIEWED: Material params #1649
Just assigned a fixed memory size for custom Material parameters in case of being required, so we shouldn't worry about allocating/freeing them.
il y a 4 ans
Hristo Stamenov
bc9194690c
Implement UnloadModelAnimations ( #1648 )
il y a 4 ans
Ray
01e28263be
WARNING: VERY BREAKING CHANGE: Renamed some enum values for consistency
Some enums values have been renamed to be more consistent and also provide a more detailed description:
- ShaderLocationIndex: LOC_VERTEX_POSITION -> SHADER_SHADER_LOC_VERTEX_POSITION
- ShaderUniformDataType: UNIFORM_VEC2 -> SHADER_UNIFORM_VEC2
- MaterialMapType: MAP_ALBEDO -> MATERIAL_MAP_ALBEDO
- PixelFormat: UNCOMPRESSED_GRAYSCALE -> PIXELFORMAT_UNCOMPRESSED_GRAYSCALE
il y a 4 ans
Ray
fe3256be9f
Renamed some functions to use latest raylib version
il y a 4 ans
Ray
8a30a2408c
ADDED: Required callbacks
Removed memory allocation callbacks
il y a 4 ans
Ray
0d096b43c2
Update some comments to warn users about callbacks
il y a 4 ans
Ray
c4a7c702b4
FEATURE: Several callbacks added -WIP- #1523 #1329
NOTE: This feature is still under consideration and not complete.
il y a 4 ans
Ray
dfe797060a
WARNING: BREAKING: RENAMED: enums values
RENAMED: TextureFilterMode values
RENAMED: TextureWrapMode values
il y a 4 ans
Ray
408f5aedb8
WARNING: BREAKING: RENAMED enum values
RENAMED: CubemapLayoutType and NPatchType
il y a 4 ans
Ray
bcc4418ff0
REVIEWED: GetFileExtension() to include the dot #1523
il y a 4 ans
Agnis "NeZvērs" Aldiņš
209445ccde
LoadMusicStreamFromMemory ( #1606 )
* define SUPPORT_FILEFORMAT_MOD in config.h
* RLAPI LoadModuleFromData() definition in raylib.h
* LoadModuleFromData() definition in raudio.h
* LoadModuleFromData implementation in raudio.c
* Rename API to LoadMusicStreamFromMemory & default unload.
* raudio.c tabs to spaces
* Styling curly bracket and removing dev debugging TRACELOG
Co-authored-by: nezvers <agnis16@inbox.lv>
il y a 4 ans
raysan5
0c63c7c907
Possible callbacks -WIP-
il y a 4 ans
raysan5
090c790e50
Review formating for latest PR
il y a 4 ans
raysan5
0f309b9b16
REMOVED: MeshNormalsSmooth() #1421
Current implementation is probably wrong and it should be reimplemented from scratch, in the meantime, I prefer to remove the function.
il y a 4 ans
raysan5
62ccec0ac5
REMOVED: SetTraceLogExit()
I feel nobody has ever used this function...
il y a 4 ans
Ray
3431d58586
Designing some callbacks -WIP-
il y a 4 ans
raysan5
96db787657
REVIEWED: Gamepad system, specially for RPI
il y a 4 ans
Ray
f4f208c4ae
ADDED: UploadMesh() #1529
Upload mesh data to GPU and get VAO/VBO identifiers
il y a 4 ans
Ray
f2c0981c57
Review typo
il y a 4 ans
Ray
18ab694f70
ADDED: SetGamepadMappings() #1506
il y a 4 ans
Ray
eb7820b2b0
Review comment
il y a 4 ans