diff options
Diffstat (limited to 'lib/jxl/image.h')
-rw-r--r-- | lib/jxl/image.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/jxl/image.h b/lib/jxl/image.h index 5fe2c55..fef7f67 100644 --- a/lib/jxl/image.h +++ b/lib/jxl/image.h @@ -17,13 +17,15 @@ #include <sstream> #include <utility> // std::move -#include "lib/jxl/base/cache_aligned.h" #include "lib/jxl/base/compiler_specific.h" #include "lib/jxl/base/status.h" -#include "lib/jxl/common.h" +#include "lib/jxl/cache_aligned.h" namespace jxl { +// Helper function to create rows that are multiples of SIMD vector size. +size_t VectorSize(); + // Type-independent parts of Plane<> - reduces code duplication and facilitates // moving member function implementations to cc file. struct PlaneBase { |