mirror of
https://github.com/openharmony/third_party_meshoptimizer.git
synced 2026-07-18 17:44:31 -04:00
cb476c0d60
This mostly tests connected components code for correctness on odd topology and sparse inputs.
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#include "../src/meshoptimizer.h"
|
|
|
|
#include <float.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* buffer, size_t size)
|
|
{
|
|
if (size == 0)
|
|
return 0;
|
|
|
|
srand(buffer[0]);
|
|
|
|
float vb[100][4];
|
|
|
|
for (int i = 0; i < 100; ++i)
|
|
{
|
|
vb[i][0] = rand() % 10;
|
|
vb[i][1] = rand() % 10;
|
|
vb[i][2] = rand() % 10;
|
|
vb[i][3] = rand() % 10;
|
|
}
|
|
|
|
unsigned int ib[999];
|
|
int indices = (size - 1) < 999 ? (size - 1) / 3 * 3 : 999;
|
|
|
|
for (int i = 0; i < indices; ++i)
|
|
ib[i] = buffer[1 + i] % 100;
|
|
|
|
unsigned int res[999];
|
|
|
|
meshopt_simplify(res, ib, indices, vb[0], 100, sizeof(float) * 4, 0, 1e-1f, 0, NULL);
|
|
meshopt_simplify(res, ib, indices, vb[0], 100, sizeof(float) * 4, 0, FLT_MAX, 0, NULL);
|
|
meshopt_simplify(res, ib, indices, vb[0], 100, sizeof(float) * 4, 0, FLT_MAX, meshopt_SimplifyLockBorder, NULL);
|
|
meshopt_simplify(res, ib, indices, vb[0], 100, sizeof(float) * 4, 0, FLT_MAX, meshopt_SimplifySparse, NULL);
|
|
meshopt_simplify(res, ib, indices, vb[0], 100, sizeof(float) * 4, 0, FLT_MAX, meshopt_SimplifyPrune, NULL);
|
|
|
|
return 0;
|
|
}
|