mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-21 20:39:57 +01:00
Use insertion sort
This commit is contained in:
parent
9fe207eebe
commit
6cdae481df
1 changed files with 25 additions and 9 deletions
34
small3dlib.h
34
small3dlib.h
|
@ -1891,18 +1891,34 @@ void S3L_drawScene(S3L_Scene scene)
|
||||||
}
|
}
|
||||||
|
|
||||||
#if S3L_SORT != S3L_SORT_NONE
|
#if S3L_SORT != S3L_SORT_NONE
|
||||||
// TODO: CHANGE BUBBLE SORT TO SOMETHING FASTER!
|
|
||||||
for (int16_t i = S3L_sortArrayLength - 2; i >= 0; --i)
|
#if S3L_SORT == S3L_SORT_BACK_TO_FRONT
|
||||||
for (S3L_Index j = 0; j <= i; ++j)
|
#define cmp <
|
||||||
|
#else
|
||||||
|
#define cmp >
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Sort the triangles. We use insertion sort, because it has many advantages,
|
||||||
|
especially for smaller arrays (better than bubble sort, in-place, stable,
|
||||||
|
simple, ...). */
|
||||||
|
|
||||||
|
for (int16_t i = 1; i < S3L_sortArrayLength; ++i)
|
||||||
|
{
|
||||||
|
S3L_TriangleToSort tmp = S3L_sortArray[i];
|
||||||
|
|
||||||
|
int16_t j = i - 1;
|
||||||
|
|
||||||
|
while (j >= 0 && S3L_sortArray[j].sortValue cmp tmp.sortValue)
|
||||||
{
|
{
|
||||||
if (S3L_sortArray[j].sortValue < S3L_sortArray[j + 1].sortValue)
|
S3L_sortArray[j + 1] = S3L_sortArray[j];
|
||||||
{
|
j--;
|
||||||
S3L_TriangleToSort tmp = S3L_sortArray[j];
|
|
||||||
S3L_sortArray[j] = S3L_sortArray[j + 1];
|
|
||||||
S3L_sortArray[j + 1] = tmp;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
S3L_sortArray[j + 1] = tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef cmp
|
||||||
|
|
||||||
for (S3L_Index i = 0; i < S3L_sortArrayLength; ++i)
|
for (S3L_Index i = 0; i < S3L_sortArrayLength; ++i)
|
||||||
{
|
{
|
||||||
modelIndex = S3L_sortArray[i].modelIndex;
|
modelIndex = S3L_sortArray[i].modelIndex;
|
||||||
|
|
Loading…
Reference in a new issue