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