mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Fix compilation
This commit is contained in:
parent
f16dfd8ca2
commit
4df58494a0
13 changed files with 25 additions and 25 deletions
|
|
@ -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>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue