@@ -15,31 +15,31 @@ internal static class Utils
15
15
{
16
16
// Native type Managed type
17
17
//-------------------------------
18
- { "void" , "void" } ,
19
- { "uint32_t" , "uint" } ,
20
- { "int32_t" , "int" } ,
21
- { "size_t" , "uint" } ,
22
-
23
- { "char**" , "ref string" } ,
24
- { "char **" , "ref string" } ,
25
- { "char*" , "string" } ,
26
- { "char *" , "string" } ,
27
- { "void*" , "IntPtr" } ,
28
- { "void *" , "IntPtr" } ,
18
+ { "void" , "void" } ,
19
+ { "uint32_t" , "uint" } ,
20
+ { "int32_t" , "int" } ,
21
+ { "size_t" , "uint" } ,
22
+
23
+ { "char**" , "ref string" } ,
24
+ { "char **" , "ref string" } ,
25
+ { "char*" , "string" } ,
26
+ { "char *" , "string" } ,
27
+ { "void*" , "IntPtr" } ,
28
+ { "void *" , "IntPtr" } ,
29
29
30
30
// STL
31
- { "std::string" , "/* UNSUPPORTED */ string" } ,
31
+ { "std::string" , "/* UNSUPPORTED */ string" } ,
32
32
33
33
// GLM
34
- { "glm::vec2" , "Vector2" } ,
35
- { "glm::vec3" , "Vector3" } ,
36
- { "glm::mat4" , "Matrix4x4" } ,
37
- { "glm::quat" , "Rotation" } ,
34
+ { "glm::vec2" , "Vector2" } ,
35
+ { "glm::vec3" , "Vector3" } ,
36
+ { "glm::mat4" , "Matrix4x4" } ,
37
+ { "glm::quat" , "Rotation" } ,
38
38
39
39
// Custom
40
- { "Quaternion" , "Rotation" } ,
41
- { "InteropStruct" , "IInteropArray" } ,
42
- { "Handle" , "uint" }
40
+ { "Quaternion" , "Rotation" } ,
41
+ { "InteropStruct" , "IInteropArray" } ,
42
+ { "Handle" , "uint" }
43
43
} ;
44
44
45
45
/// <summary>
0 commit comments