Fixed typo.

This commit is contained in:
Бранимир Караџић 2021-02-07 07:35:18 -08:00
parent f12eba6bc0
commit 239ce7a612
6 changed files with 8 additions and 8 deletions

View File

@ -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,

View File

@ -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,

View File

@ -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
*/

View File

@ -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.

View File

@ -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. */

View File

@ -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.]]