raysan5
5f0f87ecce
Added VS2015 raylib release files
pirms 8 gadiem
raysan5
9f09f6f550
Rename enum LogType names...
...to avoid possible conflicting symbols
pirms 8 gadiem
Wilhem Barbier
786cd63057
Add a density parameter to GenImageRadialGradient
pirms 8 gadiem
Wilhem Barbier
3fe268d004
Swap the two parameters
pirms 8 gadiem
Wilhem Barbier
a0ac8ee2c4
Add more image generation functions: radial gradient and perlin noise
pirms 8 gadiem
Wilhem Barbier
954757532a
Add the SaveImageAs function
pirms 8 gadiem
Wilhem Barbier
fcd13fd5d2
Add some functions to generate images
Namely:
- GenImageHorizontalV
- GenImageHorizontalH
- GenImageChecked
- GenImageWhiteNoise
- GenImageCellular
The gradient implementation may be a bit naive, for example it doesn't do any gamma correction.
pirms 8 gadiem
Ray
5370fe18e0
Additional check for bool header definition
pirms 8 gadiem
Ray
9819614276
Comments tweaks
pirms 8 gadiem
Ray
5f09c71f98
Review comments for better organization
pirms 8 gadiem
Ray
026f9829e5
Review header comments
pirms 8 gadiem
Ray
35fe34ba0f
Added some useful functions
pirms 8 gadiem
Ray
0880be638e
Renamed RayHitInfo variables
pirms 8 gadiem
Ray
bac50fbba5
Review functions descriptions
pirms 8 gadiem
Ray
50c887cb0a
Support HDR R32G32B32 float textures loading
pirms 8 gadiem
victorfisac
e197665e1d
Added function to set window minimum dimensions...
useful when using FLAG_WINDOW_RESIZABLE.
pirms 8 gadiem
Ray
d593bd0081
Some code tweaks
pirms 8 gadiem
raysan5
cfec2b40a4
Organize structs vs enums
pirms 8 gadiem
raysan5
b0f8ea27e3
Renamed function for lib consistency
LoadSpriteFontTTF() --> LoadSpriteFontEx()
pirms 8 gadiem
Ray
ecfe31bf1d
Make TraceLog() public to the API
enum LogType could require some revision...
pirms 8 gadiem
raysan5
7e65c300b6
Make public TakeScreenshot() function
pirms 8 gadiem
Ray
c3b8a41f95
Remove function declaration
pirms 8 gadiem
Ray
080a79f0b0
Added IsFileExtension()
Replaced old GetExtension() function
Make IsFileExtension() public to the API
pirms 8 gadiem
Ray
5387b45431
Working on configuration flags
pirms 8 gadiem
Ray
59652c75b4
Review some comments
pirms 8 gadiem
raysan5
8f5ff64420
Working on file header comments...
pirms 8 gadiem
raysan5
5d1f661661
Remove Oculus support from code
Moved to custom example, now raylib only supports simulated VR
rendering.
Oculus code was too device dependant... waiting for OpenXR.
pirms 8 gadiem
raysan5
3813722f17
Added function: DrawLineBezier()
pirms 8 gadiem
raysan5
59038bae96
Added function: DrawLineEx()
Supports line thickness
pirms 8 gadiem
raysan5
d1c9afd1d8
Work on timming functions...
It seems Sleep() behaves weird on my computer, disabled by default
returning to the busy wait loop... also re-implemented DrawFPS() to
avoid frame blitting...
pirms 8 gadiem
raysan5
9cfaa81a7e
Added some flags and functions to manage window
- SetWindowPosition(int x, int y);
- SetWindowMonitor(int monitor);
pirms 8 gadiem
Ray
05cff44d0a
Improved modules description -IN PROGRESS-
Working in modules configuration flags...
pirms 8 gadiem
raysan5
05f039f85f
Corrected issue with OpenAL being 'keg only' on OSX
Also reviewed issue with stdbool when compiling with clang
pirms 8 gadiem
Ray
b4988777ef
[audio] Renamed variable
pirms 8 gadiem
Ray
f2f05a734d
Added audio function: SetMusicLoopCount()
Useful to set number of repeats for a music, needs to be tested...
pirms 8 gadiem
Ray
ac6b4d3830
Added audio function: SetMasterVolume()
pirms 8 gadiem
raysan5
c4bd214cf0
Added function SetWindowIcon()
Only DESKTOP platforms (Windows, Linus, OSX)
pirms 8 gadiem
raysan5
1a879ba08e
Refactor SpriteFont struct
Now it uses CharInfo data, this way, it's better aligned with the future
RRES file format data layout for sprite font characters.
pirms 8 gadiem
Ray
495108a2e9
Updated raylib version to 1.7
Preparing for next version... still some work left... :P
pirms 8 gadiem
Ray
c85dfd4bc6
Remove unecessary spaces...
pirms 8 gadiem
Ray
b681e8c277
Implemented Wait()
Now program is halted (OS signal call) for required amount of time every
frame, so CPU usage drops to zero, instead of using a busy wait loop.
pirms 8 gadiem
Ray
37a64df7b9
Move lighting system out of raylib
Lighting is implemented as a raylib example now
pirms 8 gadiem
raysan5
4a158d972d
Added LoadText() function
Actually, renamed ReadTextFile() from rlgl and make it public
pirms 8 gadiem
raysan5
658c280669
Lattest PR review
Function names, code formatting...
pirms 8 gadiem
Joel Davis
d5d391faaf
Added RaycastMesh function and example test case
pirms 8 gadiem
Joel Davis
037da8879a
Added RaycastGround and ray picking example
pirms 8 gadiem
raysan5
202f45415c
rRES raylib resources custom file format support
First version of custom raylib resources file format -IN DEVELOPMENT-
pirms 8 gadiem
raysan5
852f3d4fd0
Review comments and formatting
pirms 8 gadiem
Saggi Mizrahi
c394708c43
Change UpdateSound() to accept const void *
The function means to accept a const * so let's declare it.
Will allow passing const buffers in games.
Also constness is next to godliness!
Signed-off-by: Saggi Mizrahi <saggi@mizrahi.cc>
pirms 8 gadiem
Ray
814507906f
Improving rRES custom format support -IN PROGRESS-
Start removing old rRES functions.
pirms 8 gadiem