summaryrefslogtreecommitdiff
path: root/Documentation/guides
AgeCommit message (Expand)Author
2021-03-20Documentation: guides: pipeline-handler: Fix capture flag usageNícolas F. R. A. Prado
2021-03-19Documentation: guides: pipeline-handler: Update code, commands and logsNícolas F. R. A. Prado
2021-03-19Documentation: Fix typos and wrong rST syntax for literalsNícolas F. R. A. Prado
2020-12-28libcamera: pipeline_handler: Remove Camera argument from request handlingNiklas Söderlund
2020-12-08libcamera: pipeline: Pass libcamera controls into pipeline_handler::start()Naushir Patuck
2020-11-03Documentation: tracing: Add tracing guidePaul Elder
2020-10-26Documentation: Fix typo in pipeline handler guideSebastian Fricke
2020-10-20libcamera: Omit extra semicolonsHirokazu Honda
2020-09-30Documentation: guides: pipeline-handler: Update clamp() namespaceUmang Jain
2020-08-20Documentation: Guides: Pipeline Handler Writer's GuideChris Chinchilla
2020-08-20Documentation: Guides: Application Writer's GuideChris Chinchilla
2020-08-20Documentation: Guides: Developer's Guide to libcameraChris Chinchilla
="hl kwd">name() != std::string("Brightness")) { cout << "Invalid control identification for Brightness" << endl; return TestFail; } if (info.min().getInt() != 0 || info.max().getInt() != 0) { cout << "Invalid control range for Brightness" << endl; return TestFail; } /* * Test information retrieval from a control with a minimum and * a maximum value. */ info = ControlInfo(Contrast, 10, 200); if (info.id() != Contrast || info.type() != ControlValueInteger || info.name() != std::string("Contrast")) { cout << "Invalid control identification for Contrast" << endl; return TestFail; } if (info.min().getInt() != 10 || info.max().getInt() != 200) { cout << "Invalid control range for Contrast" << endl; return TestFail; } return TestPass; } }; TEST_REGISTER(ControlInfoTest)