mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
Merge pull request #19822 from alalek:core_wui_backward_compatibility
This commit is contained in:
commit
2907fb88f5
@ -654,6 +654,20 @@ namespace CV__SIMD_NAMESPACE {
|
|||||||
|
|
||||||
/** @brief SIMD processing state cleanup call */
|
/** @brief SIMD processing state cleanup call */
|
||||||
inline void vx_cleanup() { VXPREFIX(_cleanup)(); }
|
inline void vx_cleanup() { VXPREFIX(_cleanup)(); }
|
||||||
|
|
||||||
|
|
||||||
|
//! @cond IGNORED
|
||||||
|
|
||||||
|
// backward compatibility
|
||||||
|
template<typename _Tp, typename _Tvec> static inline
|
||||||
|
void vx_store(_Tp* dst, const _Tvec& v) { return v_store(dst, v); }
|
||||||
|
// backward compatibility
|
||||||
|
template<typename _Tp, typename _Tvec> static inline
|
||||||
|
void vx_store_aligned(_Tp* dst, const _Tvec& v) { return v_store_aligned(dst, v); }
|
||||||
|
|
||||||
|
//! @endcond
|
||||||
|
|
||||||
|
|
||||||
//! @}
|
//! @}
|
||||||
#undef VXPREFIX
|
#undef VXPREFIX
|
||||||
} // namespace
|
} // namespace
|
||||||
|
Loading…
Reference in New Issue
Block a user