diff options
| author | Joshua Reisenauer <kd7tck@msn.com> | 2016-06-07 16:07:57 -0700 |
|---|---|---|
| committer | Joshua Reisenauer <kd7tck@msn.com> | 2016-06-07 16:07:57 -0700 |
| commit | 7bf2854e949a073535109327d18303ee31d0c322 (patch) | |
| tree | c55e9a71cabf53279bf7f384251ca3549f36e6b9 /src/rlgl.h | |
| parent | f0d8c009ae9bd1d8e7f17f76fe0658b257cf16de (diff) | |
| parent | 79a6235811de391d8ae9d0b90bf39c2160dc7907 (diff) | |
| download | raylib-7bf2854e949a073535109327d18303ee31d0c322.tar.gz raylib-7bf2854e949a073535109327d18303ee31d0c322.zip | |
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'src/rlgl.h')
| -rw-r--r-- | src/rlgl.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -230,6 +230,9 @@ typedef enum { OPENGL_11 = 1, OPENGL_33, OPENGL_ES_20 } GlVersion; // Color blending modes (pre-defined) typedef enum { BLEND_ALPHA = 0, BLEND_ADDITIVE, BLEND_MULTIPLIED } BlendMode; + + // TraceLog message types + typedef enum { INFO = 0, ERROR, WARNING, DEBUG, OTHER } TraceLogType; #endif #ifdef __cplusplus @@ -339,6 +342,8 @@ void EndBlendMode(void); // End blend Light CreateLight(int type, Vector3 position, Color diffuse); // Create a new light, initialize it and add to pool void DestroyLight(Light light); // Destroy a light and take it out of the list + +void TraceLog(int msgType, const char *text, ...); #endif #ifdef __cplusplus |
