Skip to content

Commit 8617bc2

Browse files
committed
Remove experimental note from stripify/unstripify
These should be ready for production; it's possible that we'll decide to add some extra parameters to stripify in the future but it's not looking very likely and we *can* change the function signature up until 1.0...
1 parent 401c78b commit 8617bc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/meshoptimizer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ MESHOPTIMIZER_API int meshopt_decodeVertexBuffer(void* destination, size_t verte
144144
MESHOPTIMIZER_API size_t meshopt_simplify(unsigned int* destination, const unsigned int* indices, size_t index_count, const float* vertex_positions, size_t vertex_count, size_t vertex_positions_stride, size_t target_index_count);
145145

146146
/**
147-
* Experimental: Mesh stripifier
147+
* Mesh stripifier
148148
* Converts a previously vertex cache optimized triangle list to triangle strip, stitching strips using restart index
149149
* Returns the number of indices in the resulting strip, with destination containing new index data
150150
* For maximum efficiency the index buffer being converted has to be optimized for vertex cache first.
@@ -154,7 +154,7 @@ MESHOPTIMIZER_API size_t meshopt_simplify(unsigned int* destination, const unsig
154154
MESHOPTIMIZER_API size_t meshopt_stripify(unsigned int* destination, const unsigned int* indices, size_t index_count, size_t vertex_count);
155155

156156
/**
157-
* Experimental: Mesh unstripifier
157+
* Mesh unstripifier
158158
* Converts a triangle strip to a triangle list
159159
* Returns the number of indices in the resulting list, with destination containing new index data
160160
*

0 commit comments

Comments
 (0)