summaryrefslogtreecommitdiff
path: root/utils/tuning/libtuning/modules/module.py
AgeCommit message (Expand)Author
2024-05-08libcamera: Drop file name from header comment blocksLaurent Pinchart
2022-11-25utils: tuning: libtuning: Implement extensible components of libtuningPaul Elder
dentifier: GPL-2.0-or-later */ /* * Copyright (C) 2021, Collabora Ltd. * * environment.h - Common environment for tests */ #pragma once #include <libcamera/libcamera.h> class Environment { public: static Environment *get(); void setup(libcamera::CameraManager *cm, std::string cameraId); const std::string &cameraId() const { return cameraId_; } libcamera::CameraManager *cm() const { return cm_; } private: Environment() = default; std::string cameraId_; libcamera::CameraManager *cm_; };