@@ -79,22 +79,6 @@ public unsafe partial class Raylib
7979 [ NativeName ( NativeNameType . Value , "1" ) ]
8080 public const int SUPPORT_AUTOMATION_EVENTS = 1 ;
8181
82- [ NativeName ( NativeNameType . Const , "SUPPORT_CLIPBOARD_IMAGE" ) ]
83- [ NativeName ( NativeNameType . Value , "1" ) ]
84- public const int SUPPORT_CLIPBOARD_IMAGE = 1 ;
85-
86- [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_BMP" ) ]
87- [ NativeName ( NativeNameType . Value , "1" ) ]
88- public const int SUPPORT_FILEFORMAT_BMP = 1 ;
89-
90- [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_PNG" ) ]
91- [ NativeName ( NativeNameType . Value , "1" ) ]
92- public const int SUPPORT_FILEFORMAT_PNG = 1 ;
93-
94- [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_JPG" ) ]
95- [ NativeName ( NativeNameType . Value , "1" ) ]
96- public const int SUPPORT_FILEFORMAT_JPG = 1 ;
97-
9882 [ NativeName ( NativeNameType . Const , "MAX_FILEPATH_CAPACITY" ) ]
9983 [ NativeName ( NativeNameType . Value , "8192" ) ]
10084 public const int MAX_FILEPATH_CAPACITY = 8192 ;
@@ -115,9 +99,9 @@ public unsafe partial class Raylib
11599 [ NativeName ( NativeNameType . Value , "4" ) ]
116100 public const int MAX_GAMEPADS = 4 ;
117101
118- [ NativeName ( NativeNameType . Const , "MAX_GAMEPAD_AXES " ) ]
102+ [ NativeName ( NativeNameType . Const , "MAX_GAMEPAD_AXIS " ) ]
119103 [ NativeName ( NativeNameType . Value , "8" ) ]
120- public const int MAX_GAMEPAD_AXES = 8 ;
104+ public const int MAX_GAMEPAD_AXIS = 8 ;
121105
122106 [ NativeName ( NativeNameType . Const , "MAX_GAMEPAD_BUTTONS" ) ]
123107 [ NativeName ( NativeNameType . Value , "32" ) ]
@@ -172,12 +156,12 @@ public unsafe partial class Raylib
172156 public const int RL_MAX_SHADER_LOCATIONS = 32 ;
173157
174158 [ NativeName ( NativeNameType . Const , "RL_CULL_DISTANCE_NEAR" ) ]
175- [ NativeName ( NativeNameType . Value , "0.001 " ) ]
176- public const double RL_CULL_DISTANCE_NEAR = 0.001 ;
159+ [ NativeName ( NativeNameType . Value , "0.01 " ) ]
160+ public const double RL_CULL_DISTANCE_NEAR = 0.01 ;
177161
178162 [ NativeName ( NativeNameType . Const , "RL_CULL_DISTANCE_FAR" ) ]
179- [ NativeName ( NativeNameType . Value , "10000 .0" ) ]
180- public const double RL_CULL_DISTANCE_FAR = 10000 .0;
163+ [ NativeName ( NativeNameType . Value , "1000 .0" ) ]
164+ public const double RL_CULL_DISTANCE_FAR = 1000 .0;
181165
182166 [ NativeName ( NativeNameType . Const , "RL_DEFAULT_SHADER_ATTRIB_LOCATION_POSITION" ) ]
183167 [ NativeName ( NativeNameType . Value , "0" ) ]
@@ -215,10 +199,6 @@ public unsafe partial class Raylib
215199 [ NativeName ( NativeNameType . Value , "8" ) ]
216200 public const int RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEWEIGHTS = 8 ;
217201
218- [ NativeName ( NativeNameType . Const , "RL_DEFAULT_SHADER_ATTRIB_LOCATION_INSTANCE_TX" ) ]
219- [ NativeName ( NativeNameType . Value , "9" ) ]
220- public const int RL_DEFAULT_SHADER_ATTRIB_LOCATION_INSTANCE_TX = 9 ;
221-
222202 [ NativeName ( NativeNameType . Const , "RL_DEFAULT_SHADER_ATTRIB_NAME_POSITION" ) ]
223203 [ NativeName ( NativeNameType . Value , "\" vertexPosition\" " ) ]
224204 public const string RL_DEFAULT_SHADER_ATTRIB_NAME_POSITION = "vertexPosition" ;
@@ -287,6 +267,10 @@ public unsafe partial class Raylib
287267 [ NativeName ( NativeNameType . Value , "24" ) ]
288268 public const int SPLINE_SEGMENT_DIVISIONS = 24 ;
289269
270+ [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_PNG" ) ]
271+ [ NativeName ( NativeNameType . Value , "1" ) ]
272+ public const int SUPPORT_FILEFORMAT_PNG = 1 ;
273+
290274 [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_GIF" ) ]
291275 [ NativeName ( NativeNameType . Value , "1" ) ]
292276 public const int SUPPORT_FILEFORMAT_GIF = 1 ;
@@ -423,21 +407,33 @@ public unsafe partial class Raylib
423407 [ NativeName ( NativeNameType . Value , "256" ) ]
424408 public const int MAX_TRACELOG_MSG_LENGTH = 256 ;
425409
410+ [ NativeName ( NativeNameType . Const , "SUPPORT_CLIPBOARD_IMAGE" ) ]
411+ [ NativeName ( NativeNameType . Value , "1" ) ]
412+ public const int SUPPORT_CLIPBOARD_IMAGE = 1 ;
413+
414+ [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_BMP" ) ]
415+ [ NativeName ( NativeNameType . Value , "1" ) ]
416+ public const int SUPPORT_FILEFORMAT_BMP = 1 ;
417+
418+ [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_JPG" ) ]
419+ [ NativeName ( NativeNameType . Value , "1" ) ]
420+ public const int SUPPORT_FILEFORMAT_JPG = 1 ;
421+
426422 [ NativeName ( NativeNameType . Const , "RAYLIB_VERSION_MAJOR" ) ]
427423 [ NativeName ( NativeNameType . Value , "5" ) ]
428424 public const int RAYLIB_VERSION_MAJOR = 5 ;
429425
430426 [ NativeName ( NativeNameType . Const , "RAYLIB_VERSION_MINOR" ) ]
431- [ NativeName ( NativeNameType . Value , "6 " ) ]
432- public const int RAYLIB_VERSION_MINOR = 6 ;
427+ [ NativeName ( NativeNameType . Value , "5 " ) ]
428+ public const int RAYLIB_VERSION_MINOR = 5 ;
433429
434430 [ NativeName ( NativeNameType . Const , "RAYLIB_VERSION_PATCH" ) ]
435431 [ NativeName ( NativeNameType . Value , "0" ) ]
436432 public const int RAYLIB_VERSION_PATCH = 0 ;
437433
438434 [ NativeName ( NativeNameType . Const , "RAYLIB_VERSION" ) ]
439- [ NativeName ( NativeNameType . Value , "\" 5.6-dev \" " ) ]
440- public const string RAYLIB_VERSION = "5.6-dev " ;
435+ [ NativeName ( NativeNameType . Value , "\" 5.5 \" " ) ]
436+ public const string RAYLIB_VERSION = "5.5 " ;
441437
442438 [ NativeName ( NativeNameType . Const , "PI" ) ]
443439 [ NativeName ( NativeNameType . Value , "3.14159265358979323846f" ) ]
0 commit comments