tangled
alpha
login
or
join now
matrixfurry.com
/
monado
0
fork
atom
The open source OpenXR runtime
0
fork
atom
overview
issues
pulls
pipelines
a/tracking: Fix typo
Ryan Pavlik
3 years ago
a87fb2be
a51c2bcb
+1
-1
1 changed file
expand all
collapse all
unified
split
src
xrt
auxiliary
tracking
t_hsv_filter.c
+1
-1
src/xrt/auxiliary/tracking/t_hsv_filter.c
···
92
struct t_hsv_filter_large_table *temp = U_TYPED_CALLOC(struct t_hsv_filter_large_table);
93
t_hsv_build_large_table(params, temp);
94
95
-
// Half of step, minues one
96
int offset = (T_HSV_STEP / 2) - 1;
97
98
for (int y = 0; y < T_HSV_SIZE; y++) {
···
92
struct t_hsv_filter_large_table *temp = U_TYPED_CALLOC(struct t_hsv_filter_large_table);
93
t_hsv_build_large_table(params, temp);
94
95
+
// Half of step, minus one
96
int offset = (T_HSV_STEP / 2) - 1;
97
98
for (int y = 0; y < T_HSV_SIZE; y++) {