summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2018-06-30 21:56:26 +0200
committerRay <[email protected]>2018-06-30 21:56:26 +0200
commitd0166c9d45dc964a96528de6b272315219a83def (patch)
tree61dcd6d0e35be036e995e45a836230a957021146 /src/raylib.h
parenta1d9c3399558842f3b4faf00a92db5badb6a4b9f (diff)
downloadraylib-d0166c9d45dc964a96528de6b272315219a83def.tar.gz
raylib-d0166c9d45dc964a96528de6b272315219a83def.zip
Spacing tweaks
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 924d1299..de78b8c3 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -541,12 +541,12 @@ typedef struct VrDeviceInfo {
// Enumerators Definition
//----------------------------------------------------------------------------------
// Trace log type
-typedef enum {
+typedef enum {
LOG_INFO = 1,
- LOG_WARNING = 2,
- LOG_ERROR = 4,
- LOG_DEBUG = 8,
- LOG_OTHER = 16
+ LOG_WARNING = 2,
+ LOG_ERROR = 4,
+ LOG_DEBUG = 8,
+ LOG_OTHER = 16
} LogType;
// Shader location point type
@@ -638,16 +638,16 @@ typedef enum {
} TextureFilterMode;
// Texture parameters: wrap mode
-typedef enum {
- WRAP_REPEAT = 0,
- WRAP_CLAMP,
- WRAP_MIRROR
+typedef enum {
+ WRAP_REPEAT = 0,
+ WRAP_CLAMP,
+ WRAP_MIRROR
} TextureWrapMode;
// Color blending modes (pre-defined)
-typedef enum {
- BLEND_ALPHA = 0,
- BLEND_ADDITIVE,
+typedef enum {
+ BLEND_ALPHA = 0,
+ BLEND_ADDITIVE,
BLEND_MULTIPLIED
} BlendMode;
@@ -1020,7 +1020,7 @@ RLAPI void ExportMesh(const char *fileName, Mesh mesh);
// Mesh manipulation functions
RLAPI BoundingBox MeshBoundingBox(Mesh mesh); // Compute mesh bounding box limits
-RLAPI void MeshTangents(Mesh *mesh); // Compute mesh tangents
+RLAPI void MeshTangents(Mesh *mesh); // Compute mesh tangents
RLAPI void MeshBinormals(Mesh *mesh); // Compute mesh binormals
// Mesh generation functions