@@ -79,6 +79,22 @@ 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+
8298 [ NativeName ( NativeNameType . Const , "MAX_FILEPATH_CAPACITY" ) ]
8399 [ NativeName ( NativeNameType . Value , "8192" ) ]
84100 public const int MAX_FILEPATH_CAPACITY = 8192 ;
@@ -99,9 +115,9 @@ public unsafe partial class Raylib
99115 [ NativeName ( NativeNameType . Value , "4" ) ]
100116 public const int MAX_GAMEPADS = 4 ;
101117
102- [ NativeName ( NativeNameType . Const , "MAX_GAMEPAD_AXIS " ) ]
118+ [ NativeName ( NativeNameType . Const , "MAX_GAMEPAD_AXES " ) ]
103119 [ NativeName ( NativeNameType . Value , "8" ) ]
104- public const int MAX_GAMEPAD_AXIS = 8 ;
120+ public const int MAX_GAMEPAD_AXES = 8 ;
105121
106122 [ NativeName ( NativeNameType . Const , "MAX_GAMEPAD_BUTTONS" ) ]
107123 [ NativeName ( NativeNameType . Value , "32" ) ]
@@ -156,12 +172,12 @@ public unsafe partial class Raylib
156172 public const int RL_MAX_SHADER_LOCATIONS = 32 ;
157173
158174 [ NativeName ( NativeNameType . Const , "RL_CULL_DISTANCE_NEAR" ) ]
159- [ NativeName ( NativeNameType . Value , "0.01 " ) ]
160- public const double RL_CULL_DISTANCE_NEAR = 0.01 ;
175+ [ NativeName ( NativeNameType . Value , "0.001 " ) ]
176+ public const double RL_CULL_DISTANCE_NEAR = 0.001 ;
161177
162178 [ NativeName ( NativeNameType . Const , "RL_CULL_DISTANCE_FAR" ) ]
163- [ NativeName ( NativeNameType . Value , "1000 .0" ) ]
164- public const double RL_CULL_DISTANCE_FAR = 1000 .0;
179+ [ NativeName ( NativeNameType . Value , "10000 .0" ) ]
180+ public const double RL_CULL_DISTANCE_FAR = 10000 .0;
165181
166182 [ NativeName ( NativeNameType . Const , "RL_DEFAULT_SHADER_ATTRIB_LOCATION_POSITION" ) ]
167183 [ NativeName ( NativeNameType . Value , "0" ) ]
@@ -199,6 +215,10 @@ public unsafe partial class Raylib
199215 [ NativeName ( NativeNameType . Value , "8" ) ]
200216 public const int RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEWEIGHTS = 8 ;
201217
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+
202222 [ NativeName ( NativeNameType . Const , "RL_DEFAULT_SHADER_ATTRIB_NAME_POSITION" ) ]
203223 [ NativeName ( NativeNameType . Value , "\" vertexPosition\" " ) ]
204224 public const string RL_DEFAULT_SHADER_ATTRIB_NAME_POSITION = "vertexPosition" ;
@@ -267,10 +287,6 @@ public unsafe partial class Raylib
267287 [ NativeName ( NativeNameType . Value , "24" ) ]
268288 public const int SPLINE_SEGMENT_DIVISIONS = 24 ;
269289
270- [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_PNG" ) ]
271- [ NativeName ( NativeNameType . Value , "1" ) ]
272- public const int SUPPORT_FILEFORMAT_PNG = 1 ;
273-
274290 [ NativeName ( NativeNameType . Const , "SUPPORT_FILEFORMAT_GIF" ) ]
275291 [ NativeName ( NativeNameType . Value , "1" ) ]
276292 public const int SUPPORT_FILEFORMAT_GIF = 1 ;
@@ -407,33 +423,21 @@ public unsafe partial class Raylib
407423 [ NativeName ( NativeNameType . Value , "256" ) ]
408424 public const int MAX_TRACELOG_MSG_LENGTH = 256 ;
409425
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-
422426 [ NativeName ( NativeNameType . Const , "RAYLIB_VERSION_MAJOR" ) ]
423427 [ NativeName ( NativeNameType . Value , "5" ) ]
424428 public const int RAYLIB_VERSION_MAJOR = 5 ;
425429
426430 [ NativeName ( NativeNameType . Const , "RAYLIB_VERSION_MINOR" ) ]
427- [ NativeName ( NativeNameType . Value , "5 " ) ]
428- public const int RAYLIB_VERSION_MINOR = 5 ;
431+ [ NativeName ( NativeNameType . Value , "6 " ) ]
432+ public const int RAYLIB_VERSION_MINOR = 6 ;
429433
430434 [ NativeName ( NativeNameType . Const , "RAYLIB_VERSION_PATCH" ) ]
431435 [ NativeName ( NativeNameType . Value , "0" ) ]
432436 public const int RAYLIB_VERSION_PATCH = 0 ;
433437
434438 [ NativeName ( NativeNameType . Const , "RAYLIB_VERSION" ) ]
435- [ NativeName ( NativeNameType . Value , "\" 5.5 \" " ) ]
436- public const string RAYLIB_VERSION = "5.5 " ;
439+ [ NativeName ( NativeNameType . Value , "\" 5.6-dev \" " ) ]
440+ public const string RAYLIB_VERSION = "5.6-dev " ;
437441
438442 [ NativeName ( NativeNameType . Const , "PI" ) ]
439443 [ NativeName ( NativeNameType . Value , "3.14159265358979323846f" ) ]
0 commit comments