1
0
Fork 0
mirror of https://git.coom.tech/drummyfish/raycastlib.git synced 2024-11-21 20:29:59 +01:00

Update tests

This commit is contained in:
Miloslav Číž 2018-09-05 11:37:12 +02:00
parent fa68bd5fa5
commit 92258384f7

7
test.c
View file

@ -18,6 +18,11 @@ Unit testArrayFunc(int16_t x, int16_t y)
return (x < 0 || y < 0 || x > 9 || y > 9) ? 1 : 0;
}
Unit testArrayFunc2(int16_t x, int16_t y)
{
return testArrayFunc(x,y) + 10 * UNITS_PER_SQUARE;
}
/**
Simple automatic test function.
*/
@ -189,7 +194,7 @@ void benchmarkRender()
constraints.maxSteps = 12;
for (int i = 0; i < 100; ++i)
render(c,testArrayFunc,pixelFunc,constraints);
render(c,testArrayFunc,testArrayFunc2,pixelFunc,constraints);
}
int main()