mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Feature/opengldebug (#290)
* Add InLIstVerifier * Initial implementation of OpenGL debug messages * Moving functionality into Ghoul * Compile fix * Update Ghoul repository Make use of the moved OpenGL debug functions * Update Ghoul to fix GCC and Clang compiler errors * Add unit test for IntListVerifier
This commit is contained in:
@@ -216,6 +216,19 @@ struct StringListVerifier : public TableVerifier {
|
||||
std::string type() const override;
|
||||
};
|
||||
|
||||
/**
|
||||
* A Verifier that checks whether all values contained in a Table are of type \c int.
|
||||
*/
|
||||
struct IntListVerifier : public TableVerifier {
|
||||
/**
|
||||
* Constructor for a IntListVerifier.
|
||||
* \param elementDocumentation The documentation for each string in the list
|
||||
*/
|
||||
IntListVerifier(std::string elementDocumentation = "");
|
||||
|
||||
std::string type() const override;
|
||||
};
|
||||
|
||||
//----------------------------------------------------------------------------------------
|
||||
// Vector verifiers
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user