147583b03cbad1823b9bcc7a5602de9cfe49d7a7
[platform/upstream/VK-GL-CTS.git] / framework / platform / android / tcuAndroidWindow.cpp
1 /*-------------------------------------------------------------------------
2  * drawElements Quality Program Tester Core
3  * ----------------------------------------
4  *
5  * Copyright 2014 The Android Open Source Project
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  * \file
21  * \brief Android window.
22  *//*--------------------------------------------------------------------*/
23
24 #include "tcuAndroidWindow.hpp"
25
26 namespace tcu
27 {
28 namespace Android
29 {
30
31 Window::Window (ANativeWindow* window)
32         : m_window              (window)
33         , m_semaphore   (1)
34 {
35 }
36
37 Window::~Window (void)
38 {
39 }
40
41 void Window::setBuffersGeometry (int width, int height, int32_t format)
42 {
43         ANativeWindow_setBuffersGeometry(m_window, width, height, format);
44 }
45
46 IVec2 Window::getSize (void) const
47 {
48         const int32_t   width   = ANativeWindow_getWidth(m_window);
49         const int32_t   height  = ANativeWindow_getHeight(m_window);
50         return IVec2(width, height);
51 }
52
53 } // Android
54 } // tcu