|
|
|
@ -60,7 +60,12 @@ class GlxApplication: public AbstractXApplication { |
|
|
|
explicit GlxApplication(const Arguments& arguments, const Configuration& configuration = Configuration()): AbstractXApplication(new GlxContextHandler, arguments, configuration) {} |
|
|
|
explicit GlxApplication(const Arguments& arguments, const Configuration& configuration = Configuration()): AbstractXApplication(new GlxContextHandler, arguments, configuration) {} |
|
|
|
|
|
|
|
|
|
|
|
/** @copydoc GlutApplication::GlutApplication(const Arguments&, std::nullptr_t) */ |
|
|
|
/** @copydoc GlutApplication::GlutApplication(const Arguments&, std::nullptr_t) */ |
|
|
|
explicit GlxApplication(const Arguments& arguments, std::nullptr_t): AbstractXApplication(new GlxContextHandler, arguments, nullptr) {} |
|
|
|
#ifndef CORRADE_GCC45_COMPATIBILITY |
|
|
|
|
|
|
|
explicit GlxApplication(const Arguments& arguments, std::nullptr_t) |
|
|
|
|
|
|
|
#else |
|
|
|
|
|
|
|
explicit GlxApplication(const Arguments& arguments, void*) |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
: AbstractXApplication(new GlxContextHandler, arguments, nullptr) {} |
|
|
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
protected: |
|
|
|
/* Nobody will need to have (and delete) GlxApplication*, thus this is
|
|
|
|
/* Nobody will need to have (and delete) GlxApplication*, thus this is
|
|
|
|
|