/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2021, Collabora Ltd. * * environment.cpp - Common environment for tests */ #include "environment.h" using namespace libcamera; Environment *Environment::get() { static Environment instance; return &instance; } void Environment::setup(CameraManager *cm, std::string cameraId) { cm_ = cm; cameraId_ = cameraId; } git Git repository'/>
summaryrefslogtreecommitdiff
path: root/subprojects/gtest.wrap
blob: 40128b35d6dccce8eaf26f33ea6ed8b261e929f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14