15 lines
284 B
C++
15 lines
284 B
C++
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#include "util/transform.h"
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
void transform_inverse_cpu_avx2(const Transform &tfm, Transform &itfm)
|
|
{
|
|
itfm = transform_inverse_impl(tfm);
|
|
}
|
|
|
|
CCL_NAMESPACE_END
|