X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-adaptor%2Fdali-test-suite-utils%2Ftest-gl-context-helper-abstraction.h;h=1a5a54c0bc0b85e4991d2640f8e5a7cc9834a45d;hb=97568a209c309d5f99bf288afa951a77f7fdcddd;hp=4c297576abd158f13f484a9b07404404f59c4b6d;hpb=1d0d7873858fd2010b71e5db8f03654fb307370f;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-gl-context-helper-abstraction.h b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-gl-context-helper-abstraction.h index 4c29757..1a5a54c 100644 --- a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-gl-context-helper-abstraction.h +++ b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-gl-context-helper-abstraction.h @@ -23,44 +23,42 @@ namespace Dali { - /** * Class to emulate the GL context helper */ -class DALI_CORE_API TestGlContextHelperAbstraction: public Integration::GlContextHelperAbstraction +class DALI_CORE_API TestGlContextHelperAbstraction : public Integration::GlContextHelperAbstraction { public: /** * Constructor */ - TestGlContextHelperAbstraction() {}; + TestGlContextHelperAbstraction(){}; /** * Destructor */ - ~TestGlContextHelperAbstraction() {}; + ~TestGlContextHelperAbstraction() override{}; /** * @brief Switch to the surfaceless GL context */ - void MakeSurfacelessContextCurrent() override {}; + void MakeSurfacelessContextCurrent() override{}; /** * @brief Clear the GL context */ - void MakeContextNull() override {}; + void MakeContextNull() override{}; /** * @brief Wait until all GL rendering calls for the current GL context are executed */ - void WaitClient() override {}; + void WaitClient() override{}; private: - - TestGlContextHelperAbstraction( const TestGlContextHelperAbstraction& ); ///< Undefined - TestGlContextHelperAbstraction& operator=( const TestGlContextHelperAbstraction& ); ///< Undefined + TestGlContextHelperAbstraction(const TestGlContextHelperAbstraction&); ///< Undefined + TestGlContextHelperAbstraction& operator=(const TestGlContextHelperAbstraction&); ///< Undefined }; -} // Dali +} // namespace Dali #endif // TEST_GL_CONTEXT_HELPER_ABSTRACTION_H