diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-12-15 22:50:36 -0500 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-12-16 18:00:47 -0500 |
commit | 7bf4bec257dffb633d818fb1a7ade6b899ec79a5 (patch) | |
tree | 79572d3f31bb42d89df8552bd7d45ff37b189814 /src/input_common/drivers/camera.h | |
parent | 9ff891ce71bfe89f46a1b6f018e421db5dec5762 (diff) |
camera: Use pre-allocated vector for camera data
And avoid an unnecessary copy
Diffstat (limited to 'src/input_common/drivers/camera.h')
-rw-r--r-- | src/input_common/drivers/camera.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input_common/drivers/camera.h b/src/input_common/drivers/camera.h index b8a7c75e5..38fb1ae4c 100644 --- a/src/input_common/drivers/camera.h +++ b/src/input_common/drivers/camera.h @@ -3,6 +3,8 @@ #pragma once +#include <span> + #include "input_common/input_engine.h" namespace InputCommon { @@ -15,7 +17,7 @@ class Camera final : public InputEngine { public: explicit Camera(std::string input_engine_); - void SetCameraData(std::size_t width, std::size_t height, std::vector<u32> data); + void SetCameraData(std::size_t width, std::size_t height, std::span<const u32> data); std::size_t getImageWidth() const; std::size_t getImageHeight() const; |