diff options
| author | 2022-12-15 22:50:36 -0500 | |
|---|---|---|
| committer | 2022-12-16 18:00:47 -0500 | |
| commit | 7bf4bec257dffb633d818fb1a7ade6b899ec79a5 (patch) | |
| tree | 79572d3f31bb42d89df8552bd7d45ff37b189814 /src/input_common/drivers/camera.h | |
| parent | Merge pull request #9431 from liamwhite/sixty-five-oh-two (diff) | |
| download | yuzu-7bf4bec257dffb633d818fb1a7ade6b899ec79a5.tar.gz yuzu-7bf4bec257dffb633d818fb1a7ade6b899ec79a5.tar.xz yuzu-7bf4bec257dffb633d818fb1a7ade6b899ec79a5.zip | |
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 @@ | |||
| 3 | 3 | ||
| 4 | #pragma once | 4 | #pragma once |
| 5 | 5 | ||
| 6 | #include <span> | ||
| 7 | |||
| 6 | #include "input_common/input_engine.h" | 8 | #include "input_common/input_engine.h" |
| 7 | 9 | ||
| 8 | namespace InputCommon { | 10 | namespace InputCommon { |
| @@ -15,7 +17,7 @@ class Camera final : public InputEngine { | |||
| 15 | public: | 17 | public: |
| 16 | explicit Camera(std::string input_engine_); | 18 | explicit Camera(std::string input_engine_); |
| 17 | 19 | ||
| 18 | void SetCameraData(std::size_t width, std::size_t height, std::vector<u32> data); | 20 | void SetCameraData(std::size_t width, std::size_t height, std::span<const u32> data); |
| 19 | 21 | ||
| 20 | std::size_t getImageWidth() const; | 22 | std::size_t getImageWidth() const; |
| 21 | std::size_t getImageHeight() const; | 23 | std::size_t getImageHeight() const; |