diff options
author | Barnabás Pőcze <barnabas.pocze@ideasonboard.com> | 2025-03-06 13:41:24 +0100 |
---|---|---|
committer | Barnabás Pőcze <barnabas.pocze@ideasonboard.com> | 2025-03-21 17:53:46 +0100 |
commit | 12931e304a5433e83c037e67e7d40479c8073cc3 (patch) | |
tree | 4d5459d5c22324bc4d830494267d6c613341bd3b /src | |
parent | ce333ad0d288ff1d63d2dc50210e37b0c7e93614 (diff) |
ipa: simple: lut: Fix include path
Use the proper path to include `libcamera/control_ids.h`.
Signed-off-by: Barnabás Pőcze <barnabas.pocze@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ipa/simple/algorithms/lut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipa/simple/algorithms/lut.cpp b/src/ipa/simple/algorithms/lut.cpp index 0ba2391f..18f3a550 100644 --- a/src/ipa/simple/algorithms/lut.cpp +++ b/src/ipa/simple/algorithms/lut.cpp @@ -14,9 +14,9 @@ #include <libcamera/base/log.h> -#include "simple/ipa_context.h" +#include <libcamera/control_ids.h> -#include "control_ids.h" +#include "simple/ipa_context.h" namespace libcamera { |