bgfx_weld_vertices

Weld vertices.

  1. ushort bgfx_weld_vertices(ushort* _output, const(bgfx_vertex_layout_t)* _layout, const(void)* _data, ushort _num, float _epsilon)
    version(BindBgfx_Static)
    extern (C) @nogc nothrow
    ushort
    bgfx_weld_vertices
    (
    ushort* _output
    ,,
    const(void)* _data
    ,
    ushort _num
    ,
    float _epsilon
    )
  2. da_bgfx_weld_vertices bgfx_weld_vertices;

Parameters

_output ushort*

Welded vertices remapping table. The size of buffer must be the same as number of vertices.

_layout const(bgfx_vertex_layout_t)*

Vertex stream layout.

_data const(void)*

Vertex stream.

_num ushort

Number of vertices in vertex stream.

_epsilon float

Error tolerance for vertex position comparison.

Meta