4c297576abd158f13f484a9b07404404f59c4b6d
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-gl-context-helper-abstraction.h
1 #ifndef TEST_GL_CONTEXT_HELPER_ABSTRACTION_H
2 #define TEST_GL_CONTEXT_HELPER_ABSTRACTION_H
3
4 /*
5  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/integration-api/gl-context-helper-abstraction.h>
23
24 namespace Dali
25 {
26
27 /**
28  * Class to emulate the GL context helper
29  */
30 class DALI_CORE_API TestGlContextHelperAbstraction: public Integration::GlContextHelperAbstraction
31 {
32 public:
33   /**
34    * Constructor
35    */
36   TestGlContextHelperAbstraction() {};
37
38   /**
39    * Destructor
40    */
41   ~TestGlContextHelperAbstraction() {};
42
43   /**
44    * @brief Switch to the surfaceless GL context
45    */
46   void MakeSurfacelessContextCurrent() override {};
47
48   /**
49    * @brief Clear the GL context
50    */
51   void MakeContextNull() override {};
52
53   /**
54    * @brief Wait until all GL rendering calls for the current GL context are executed
55    */
56   void WaitClient() override {};
57
58 private:
59
60   TestGlContextHelperAbstraction( const TestGlContextHelperAbstraction& ); ///< Undefined
61   TestGlContextHelperAbstraction& operator=( const TestGlContextHelperAbstraction& ); ///< Undefined
62 };
63
64 } // Dali
65
66 #endif // TEST_GL_CONTEXT_HELPER_ABSTRACTION_H