Remove separate impl.h headers, shuffle around some code and add more includes so that individual header files compile without errors. Pull Request: https://projects.blender.org/blender/blender/pulls/132361
23 lines
692 B
C
23 lines
692 B
C
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#pragma once
|
|
|
|
#include "util/types.h" // IWYU pragma: export
|
|
|
|
#include "util/math_base.h" // IWYU pragma: export
|
|
|
|
#include "util/math_int2.h" // IWYU pragma: export
|
|
#include "util/math_int3.h" // IWYU pragma: export
|
|
#include "util/math_int4.h" // IWYU pragma: export
|
|
#include "util/math_int8.h" // IWYU pragma: export
|
|
|
|
#include "util/math_float2.h" // IWYU pragma: export
|
|
#include "util/math_float4.h" // IWYU pragma: export
|
|
#include "util/math_float8.h" // IWYU pragma: export
|
|
|
|
#include "util/math_float3.h" // IWYU pragma: export
|
|
|
|
#include "util/rect.h" // IWYU pragma: export
|