blender/intern/opencolorio
Aras Pranckevicius d973355b3a Cleanup: reduce amount of math-related includes
Using ClangBuildAnalyzer on the whole Blender build, it was pointing
out that BLI_math.h is the heaviest "header hub" (i.e. non tiny file
that is included a lot).

However, there's very little (actually zero) source files in Blender
that need "all the math" (base, colors, vectors, matrices,
quaternions, intersection, interpolation, statistics, solvers and
time). A common use case is source files needing just vectors, or
just vectors & matrices, or just colors etc. Actually, 181 files
were including the whole math thing without needing it at all.

This change removes BLI_math.h completely, and instead in all the
places that need it, includes BLI_math_vector.h or BLI_math_color.h
and so on.

Change from that:
- BLI_math_color.h was included 1399 times -> now 408 (took 114.0sec
  to parse -> now 36.3sec)
- BLI_simd.h 1403 -> 418 (109.7sec -> 34.9sec).

Full rebuild of Blender (Apple M1, Xcode, RelWithDebInfo) is not
affected much (342sec -> 334sec). Most of benefit would be when
someone's changing BLI_simd.h or BLI_math_color.h or similar files,
that now there's 3x fewer files result in a recompile.

Pull Request #110944
2023-08-10 14:51:40 +03:00
..
CMakeLists.txt Cleanup: CMake: Modernize bf_blenlib dependencies 2023-07-10 22:04:18 +02:00
fallback_impl.cc Color management: Improve no-op color space detection 2023-08-09 16:24:49 +02:00
gpu_shader_display_transform_frag.glsl macOS: Enable support for EDR rendering 2023-08-09 14:25:15 +02:00
gpu_shader_display_transform_vert.glsl OCIO: Port shader creation logic to use GPUShaderCreateInfo 2022-02-18 22:30:45 +01:00
ocio_capi.cc Color management: Improve no-op color space detection 2023-08-09 16:24:49 +02:00
ocio_capi.h Color management: Improve no-op color space detection 2023-08-09 16:24:49 +02:00
ocio_impl_glsl.cc macOS: Enable support for EDR rendering 2023-08-09 14:25:15 +02:00
ocio_impl.cc Cleanup: reduce amount of math-related includes 2023-08-10 14:51:40 +03:00
ocio_impl.h Color management: Improve no-op color space detection 2023-08-09 16:24:49 +02:00
ocio_shader_shared.hh macOS: Enable support for EDR rendering 2023-08-09 14:25:15 +02:00