Update mingw32 release
This commit is contained in:
parent
d34c1285e0
commit
240ecd6332
@ -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)
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user