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 EGL native window abstraction
22 *//*--------------------------------------------------------------------*/
23
24#include "egluNativeWindow.hpp"
25
26namespace eglu
27{
28
29using namespace eglw;
30
31// NativeWindow
32
33NativeWindow::NativeWindow (Capability capabilities)
34	: m_capabilities(capabilities)
35{
36}
37
38EGLNativeWindowType NativeWindow::getLegacyNative (void)
39{
40	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_LEGACY) == 0);
41	throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreateWindowSurface()", DE_NULL, __FILE__, __LINE__);
42}
43
44void* NativeWindow::getPlatformExtension (void)
45{
46	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_PLATFORM_EXTENSION) == 0);
47	throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreatePlatformWindowSurfaceEXT()", DE_NULL, __FILE__, __LINE__);
48}
49
50void* NativeWindow::getPlatformNative (void)
51{
52	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_PLATFORM) == 0);
53	throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreatePlatformWindowSurface()", DE_NULL, __FILE__, __LINE__);
54}
55
56tcu::IVec2 NativeWindow::getSurfaceSize (void) const
57{
58	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_GET_SURFACE_SIZE) == 0);
59	throw tcu::NotSupportedError("eglu::NativeWindow doesn't support querying the surface size", DE_NULL, __FILE__, __LINE__);
60}
61
62void NativeWindow::setSurfaceSize (tcu::IVec2 size)
63{
64	DE_UNREF(size);
65	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_SET_SURFACE_SIZE) == 0);
66	throw tcu::NotSupportedError("eglu::NativeWindow doesn't support resizing the surface", DE_NULL, __FILE__, __LINE__);
67}
68
69tcu::IVec2 NativeWindow::getScreenSize (void) const
70{
71	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_GET_SCREEN_SIZE) == 0);
72	throw tcu::NotSupportedError("eglu::NativeWindow doesn't support querying the size of the window on the screen", DE_NULL, __FILE__, __LINE__);
73}
74
75void NativeWindow::readScreenPixels (tcu::TextureLevel*) const
76{
77	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_READ_SCREEN_PIXELS) == 0);
78	throw tcu::NotSupportedError("eglu::NativeWindow doesn't support readScreenPixels", DE_NULL, __FILE__, __LINE__);
79}
80
81void NativeWindow::setVisibility (WindowParams::Visibility visibility)
82{
83	DE_UNREF(visibility);
84	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CHANGE_VISIBILITY) == 0);
85	throw tcu::NotSupportedError("eglu::NativeWindow doesn't support changing visibility", DE_NULL, __FILE__, __LINE__);
86}
87
88// NativeWindowFactory
89
90NativeWindowFactory::NativeWindowFactory (const std::string& name, const std::string& description, NativeWindow::Capability capabilities)
91	: FactoryBase		(name, description)
92	, m_capabilities	(capabilities)
93{
94}
95
96NativeWindowFactory::~NativeWindowFactory (void)
97{
98}
99
100NativeWindow* NativeWindowFactory::createWindow (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const WindowParams& params) const
101{
102	DE_UNREF(display && config && attribList);
103	return createWindow(nativeDisplay, params);
104}
105
106} // eglu
107