9effc354edbe1e649d076cf30ab149d153d9d3ee
[platform/upstream/VK-GL-CTS.git] / framework / platform / android / tcuAndroidTestActivity.hpp
1 #ifndef _TCUANDROIDTESTACTIVITY_HPP
2 #define _TCUANDROIDTESTACTIVITY_HPP
3 /*-------------------------------------------------------------------------
4  * drawElements Quality Program Tester Core
5  * ----------------------------------------
6  *
7  * Copyright 2014 The Android Open Source Project
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  *//*!
22  * \file
23  * \brief Android test activity.
24  *//*--------------------------------------------------------------------*/
25
26 #include "tcuDefs.hpp"
27 #include "tcuAndroidRenderActivity.hpp"
28 #include "tcuAndroidPlatform.hpp"
29 #include "tcuCommandLine.hpp"
30 #include "tcuAndroidAssets.hpp"
31 #include "tcuTestLog.hpp"
32 #include "tcuApp.hpp"
33
34 namespace tcu
35 {
36 namespace Android
37 {
38
39 class TestApp
40 {
41 public:
42                                                         TestApp                                         (NativeActivity& activity, ANativeWindow* window, const CommandLine& cmdLine);
43                                                         ~TestApp                                        (void);
44
45         bool                                    iterate                                         (void);
46
47 private:
48         const CommandLine&              m_cmdLine;
49         Platform                                m_platform;
50         AssetArchive                    m_archive;
51         TestLog                                 m_log;
52         App                                             m_app;
53 };
54
55 class TestThread : public RenderThread
56 {
57 public:
58                                                         TestThread                                      (NativeActivity& activity, const CommandLine& cmdLine);
59                                                         ~TestThread                                     (void);
60
61         void                                    run                                                     (void);
62
63 private:
64         virtual void                    onWindowCreated                         (ANativeWindow* window);
65         virtual void                    onWindowResized                         (ANativeWindow* window);
66         virtual void                    onWindowDestroyed                       (ANativeWindow* window);
67         virtual bool                    render                                          (void);
68
69         const CommandLine&              m_cmdLine;
70         TestApp*                                m_testApp;
71         bool                                    m_done;                                         //!< Is execution finished.
72 };
73
74 class TestActivity : public RenderActivity
75 {
76 public:
77                                                         TestActivity                            (ANativeActivity* nativeActivity);
78                                                         ~TestActivity                           (void);
79
80         virtual void                    onStop                                          (void);
81         virtual void                    onConfigurationChanged          (void);
82
83 private:
84         CommandLine                             m_cmdLine;
85         TestThread                              m_testThread;
86 };
87
88 } // Android
89 } // tcu
90
91 #endif // _TCUANDROIDTESTACTIVITY_HPP