summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/rpi
ModeNameSize
-rw-r--r--agc.cpp28112logplain
-rw-r--r--agc.hpp4255logplain
-rw-r--r--alsc.cpp25354logplain
-rw-r--r--alsc.hpp3516logplain
-rw-r--r--awb.cpp21623logplain
-rw-r--r--awb.hpp5698logplain
-rw-r--r--black_level.cpp1602logplain
-rw-r--r--black_level.hpp675logplain
-rw-r--r--ccm.cpp4920logplain
-rw-r--r--ccm.hpp1756logplain
-rw-r--r--contrast.cpp5888logplain
-rw-r--r--contrast.hpp1142logplain
-rw-r--r--dpc.cpp1237logplain
-rw-r--r--dpc.hpp647logplain
-rw-r--r--focus.cpp1062logplain
-rw-r--r--focus.hpp611logplain
-rw-r--r--geq.cpp2244logplain
-rw-r--r--geq.hpp698logplain
-rw-r--r--lux.cpp3231logplain
-rw-r--r--lux.hpp1058logplain
-rw-r--r--noise.cpp2171logplain
-rw-r--r--noise.hpp771logplain
-rw-r--r--sdn.cpp1975logplain
-rw-r--r--sdn.hpp740logplain
-rw-r--r--sharpen.cpp2545logplain
-rw-r--r--sharpen.hpp823logplain
an> * <a href="https://wiki.qt.io/D-Pointer">d-pointer</a> design pattern (also * known as <a href="https://en.wikipedia.org/wiki/Opaque_pointer">opaque pointer</a> * or <a href="https://en.cppreference.com/w/cpp/language/pimpl">pImpl idiom</a>). * It helps creating public classes that can be extended without breaking their * ABI. Such classes store their private data in a separate private data object, * referenced by a pointer in the public class (hence the name d-pointer). * * Classes that follow this design pattern are referred herein as extensible * classes. To be extensible, a class PublicClass shall: * * - inherit from the Extensible class or from another extensible class * - invoke the LIBCAMERA_DECLARE_PRIVATE() macro at the very top of the class * definition * - define a private data class named PublicClass::Private that inherits from * the Private data class of the base class * - invoke the LIBCAMERA_DECLARE_PUBLIC() macro at the very top of the Private * data class definition * - pass a pointer to a newly allocated Private data object to the constructor * of the base class * * Additionally, if the PublicClass is not final, it shall expose one or more * constructors that takes a pointer to a Private data instance, to be used by * derived classes. * * The Private class is fully opaque to users of the libcamera public API. * Internally, it can be kept private to the implementation of PublicClass, or * be exposed to other classes. In the latter case, the members of the Private * class need to be qualified with appropriate access specifiers. The * PublicClass and Private classes always have full access to each other's * protected and private members. */ /** * \brief Construct an instance of an Extensible class * \param[in] d Pointer to the private data instance */ Extensible::Extensible(Extensible::Private *d) : d_(d) { } /** * \var Extensible::d_ * \brief Pointer to the private data instance */ /** * \class Extensible::Private * \brief Base class for private data managed through a d-pointer */ /** * \brief Construct an instance of an Extensible class private data * \param[in] o Pointer to the public class object */ Extensible::Private::Private(Extensible *o) : o_(o) { } Extensible::Private::~Private() { } /** * \var Extensible::Private::o_ * \brief Pointer to the public class object */ } /* namespace libcamera */