Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
Gregory Wells
2025-07-10 15:26:58 -04:00
2 changed files with 4 additions and 0 deletions

View File

@@ -3,12 +3,14 @@
typedef enum gnImageFormat {
GN_FORMAT_NONE,
GN_FORMAT_BGRA8_SRGB,
GN_FORMAT_BGRA8,
GN_FORMAT_RGBA8_SRGB,
GN_FORMAT_D24S8_UINT,
GN_FORMAT_D32S8_UINT,
} gnImageFormat;
typedef enum gnColorSpace {
GN_COLOR_SPACE_NONE,
GN_COLOR_SPACE_SRGB_NONLINEAR
} gnColorSpace;

View File

@@ -1,3 +1,5 @@
#pragma once
#include <math.h>
static const inline float gnRadians(const float degrees) { return degrees * (3.14159265358979323846f / 180.0f); }
static const inline float gnRoot(const float input, const float n) { return pow(input, 1./n); }