Fix compilation

This commit is contained in:
Megamouse 2024-07-19 22:45:41 +02:00
parent f16dfd8ca2
commit 4df58494a0
13 changed files with 25 additions and 25 deletions

View file

@ -18,9 +18,6 @@ namespace gem
u8* video_data_out, u32 video_data_out_size);
}
template class ps_move_tracker<false>;
template class ps_move_tracker<true>;
template <bool DiagnosticsEnabled>
ps_move_tracker<DiagnosticsEnabled>::ps_move_tracker()
{
@ -240,8 +237,6 @@ void ps_move_tracker<DiagnosticsEnabled>::process_hues()
const u32 width = m_width;
const u32 height = m_height;
static const double sqrt3 = sqrt(3);
if constexpr (DiagnosticsEnabled)
{
std::fill(m_hues.begin(), m_hues.end(), 0);
@ -562,3 +557,6 @@ std::tuple<s16, float, float> ps_move_tracker<DiagnosticsEnabled>::rgb_to_hsv(fl
return { hue, saturation, cmax };
}
template class ps_move_tracker<false>;
template class ps_move_tracker<true>;