diff options
Diffstat (limited to 'src/utils.c')
| -rw-r--r-- | src/utils.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utils.c b/src/utils.c index 02d7388..22ed7b4 100644 --- a/src/utils.c +++ b/src/utils.c @@ -34,4 +34,15 @@ Vector3 randomDirection3(int seed, int* nextSeed) return Vector3Normalize(direction); } +Image colorsToImage(Color* colors, int width, int height) +{ + return (Image){ + .data = colors, + .width = width, + .height = height, + .format = PIXELFORMAT_UNCOMPRESSED_R8G8B8A8, + .mipmaps = 1 + }; +} + // Why does the universe feel strange to exist in? |
