Update mingw32 release

This commit is contained in:
Ray 2018-07-10 12:10:31 +02:00
parent d34c1285e0
commit 240ecd6332
2 changed files with 9 additions and 2 deletions

View File

@ -350,6 +350,7 @@ typedef struct Vector4 {
float w; float w;
} Vector4; } Vector4;
// Quaternion type, same as Vector4
typedef Vector4 Quaternion; typedef Vector4 Quaternion;
// Matrix type (OpenGL style 4x4 - right handed, column major) // Matrix type (OpenGL style 4x4 - right handed, column major)
@ -396,6 +397,9 @@ typedef struct Texture2D {
int format; // Data format (PixelFormat type) int format; // Data format (PixelFormat type)
} Texture2D; } Texture2D;
// Texture type, same as Texture2D
typedef Texture2D Texture;
// RenderTexture2D type, for texture rendering // RenderTexture2D type, for texture rendering
typedef struct RenderTexture2D { typedef struct RenderTexture2D {
unsigned int id; // OpenGL Framebuffer Object (FBO) id unsigned int id; // OpenGL Framebuffer Object (FBO) id
@ -403,6 +407,9 @@ typedef struct RenderTexture2D {
Texture2D depth; // Depth buffer attachment texture Texture2D depth; // Depth buffer attachment texture
} RenderTexture2D; } RenderTexture2D;
// RenderTexture type, same as RenderTexture2D
typedef RenderTexture2D RenderTexture;
// Font character info // Font character info
typedef struct CharInfo { typedef struct CharInfo {
int value; // Character value (Unicode) int value; // Character value (Unicode)