diff options
author | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-11-11 15:07:21 +0100 |
---|---|---|
committer | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-12-03 17:47:15 +0100 |
commit | 460a955618ac4033250b8dff69f255bf35e0fc17 (patch) | |
tree | 581a6f0be1f335344b3470f9ad8ebfe193f182ad | |
parent | 0c43b777591fb8e5f91efb81f15e3300d8924b58 (diff) |
libipa: Use Matrix class from libcamera
Use the Matrix class from libcamera/internal in libipa so that the one
from libipa can be dropped later.
Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r-- | src/ipa/libipa/vector.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ipa/libipa/vector.h b/src/ipa/libipa/vector.h index 9bdd54b6..fe33c9d6 100644 --- a/src/ipa/libipa/vector.h +++ b/src/ipa/libipa/vector.h @@ -17,10 +17,9 @@ #include <libcamera/base/log.h> #include <libcamera/base/span.h> +#include "libcamera/internal/matrix.h" #include "libcamera/internal/yaml_parser.h" -#include "matrix.h" - namespace libcamera { LOG_DECLARE_CATEGORY(Vector) |