summaryrefslogtreecommitdiff
path: root/subprojects/.gitignore
AgeCommit message (Expand)Author
2023-06-04subprojects: Drop leftovers of pybind11Tomi Valkeinen
2023-05-31py: Move to mainline pybind11 versionTomi Valkeinen
2022-09-30libcamera: Add missing SPDX headers for miscellaneous CC0-1.0 contentsLaurent Pinchart
2022-05-18meson: Compile libyaml as a subproject if not available on the systemLaurent Pinchart
2022-05-10Add Python bindingsTomi Valkeinen
2021-11-15lc-compliance: Build with gtest in subprojectsHirokazu Honda
2021-02-04subprojects: Add libyuv and built if -Dandroid=enabledHirokazu Honda
f='#n59'>59 60 61 62
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * control_ids.cpp : Control ID list
 *
 * This file is auto-generated. Do not edit.
 */

#include <libcamera/control_ids.h>
#include <libcamera/controls.h>

/**
 * \file control_ids.h
 * \brief Camera control identifiers
 */

namespace libcamera {

/**
 * \brief Namespace for libcamera controls
 */
namespace controls {

${controls_doc}

/**
 * \brief Namespace for libcamera draft controls
 */
namespace draft {

${draft_controls_doc}

} /* namespace draft */

#ifndef __DOXYGEN__
/*
 * Keep the controls definitions hidden from doxygen as it incorrectly parses
 * them as functions.
 */
${controls_def}

namespace draft {

${draft_controls_def}

} /* namespace draft */
#endif

/**
 * \brief List of all supported libcamera controls
 *
 * Unless otherwise stated, all controls are bi-directional, i.e. they can be
 * set through Request::controls() and returned out through Request::metadata().
 */
extern const ControlIdMap controls {
${controls_map}
};

} /* namespace controls */

} /* namespace libcamera */