Бранимир Караџић hace 4 años
padre
commit
239ce7a612

+ 2 - 2
bindings/bf/bgfx.bf

@@ -1,5 +1,5 @@
 /*
- * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
  */
 
@@ -1864,7 +1864,7 @@ public static class bgfx
 		TriListFlipWinding,
 	
 		/// <summary>
-		/// Flip winding order of trinagle strip.
+		/// Flip winding order of triangle strip.
 		/// </summary>
 		TriStripFlipWinding,
 	

+ 2 - 2
bindings/cs/bgfx.cs

@@ -1,5 +1,5 @@
 /*
- * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
  */
 
@@ -1854,7 +1854,7 @@ public static partial class bgfx
 		TriListFlipWinding,
 	
 		/// <summary>
-		/// Flip winding order of trinagle strip.
+		/// Flip winding order of triangle strip.
 		/// </summary>
 		TriStripFlipWinding,
 	

+ 1 - 1
bindings/cs/bgfx_dllname.cs

@@ -1,5 +1,5 @@
 /*
- * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
  */
 

+ 1 - 1
bindings/d/types.d

@@ -644,7 +644,7 @@ enum bgfx_topology_t
 enum bgfx_topology_convert_t
 {
 	BGFX_TOPOLOGY_CONVERT_TRILISTFLIPWINDING, /// Flip winding order of triangle list.
-	BGFX_TOPOLOGY_CONVERT_TRISTRIPFLIPWINDING, /// Flip winding order of trinagle strip.
+	BGFX_TOPOLOGY_CONVERT_TRISTRIPFLIPWINDING, /// Flip winding order of triangle strip.
 	BGFX_TOPOLOGY_CONVERT_TRILISTTOLINELIST, /// Convert triangle list to line list.
 	BGFX_TOPOLOGY_CONVERT_TRISTRIPTOTRILIST, /// Convert triangle strip to triangle list.
 	BGFX_TOPOLOGY_CONVERT_LINESTRIPTOLINELIST, /// Convert line strip to line list.

+ 1 - 1
include/bgfx/c99/bgfx.h

@@ -332,7 +332,7 @@ typedef enum bgfx_topology
 typedef enum bgfx_topology_convert
 {
     BGFX_TOPOLOGY_CONVERT_TRI_LIST_FLIP_WINDING, /** ( 0) Flip winding order of triangle list. */
-    BGFX_TOPOLOGY_CONVERT_TRI_STRIP_FLIP_WINDING, /** ( 1) Flip winding order of trinagle strip. */
+    BGFX_TOPOLOGY_CONVERT_TRI_STRIP_FLIP_WINDING, /** ( 1) Flip winding order of triangle strip. */
     BGFX_TOPOLOGY_CONVERT_TRI_LIST_TO_LINE_LIST, /** ( 2) Convert triangle list to line list. */
     BGFX_TOPOLOGY_CONVERT_TRI_STRIP_TO_TRI_LIST, /** ( 3) Convert triangle strip to triangle list. */
     BGFX_TOPOLOGY_CONVERT_LINE_STRIP_TO_LINE_LIST, /** ( 4) Convert line strip to line list. */

+ 1 - 1
scripts/bgfx.idl

@@ -636,7 +636,7 @@ enum.Topology { underscore, comment = "Primitive topology:" }
 --- Topology conversion function.
 enum.TopologyConvert { underscore , comment = "Topology conversion functions:" }
 	.TriListFlipWinding  [[Flip winding order of triangle list.]]
-	.TriStripFlipWinding [[Flip winding order of trinagle strip.]]
+	.TriStripFlipWinding [[Flip winding order of triangle strip.]]
 	.TriListToLineList   [[Convert triangle list to line list.]]
 	.TriStripToTriList   [[Convert triangle strip to triangle list.]]
 	.LineStripToLineList [[Convert line strip to line list.]]