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