• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 pixmap abstraction
22  *//*--------------------------------------------------------------------*/
23 
24 #include "egluNativePixmap.hpp"
25 
26 namespace eglu
27 {
28 
29 using namespace eglw;
30 
31 // NativePixmap
32 
NativePixmap(Capability capabilities)33 NativePixmap::NativePixmap (Capability capabilities)
34 	: m_capabilities(capabilities)
35 {
36 }
37 
getLegacyNative(void)38 EGLNativePixmapType NativePixmap::getLegacyNative (void)
39 {
40 	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_LEGACY) == 0);
41 	throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePixmapSurface()", DE_NULL, __FILE__, __LINE__);
42 }
43 
getPlatformExtension(void)44 void* NativePixmap::getPlatformExtension (void)
45 {
46 	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_PLATFORM_EXTENSION) == 0);
47 	throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePlatformPixmapSurfaceEXT()", DE_NULL, __FILE__, __LINE__);
48 }
49 
getPlatformNative(void)50 void* NativePixmap::getPlatformNative (void)
51 {
52 	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_PLATFORM) == 0);
53 	throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePlatformPixmapSurface()", DE_NULL, __FILE__, __LINE__);
54 }
55 
readPixels(tcu::TextureLevel *)56 void NativePixmap::readPixels (tcu::TextureLevel*)
57 {
58 	TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_READ_PIXELS) == 0);
59 	throw tcu::NotSupportedError("eglu::NativePixmap doesn't support readPixels", DE_NULL, __FILE__, __LINE__);
60 }
61 
62 // NativePixmapFactory
63 
NativePixmapFactory(const std::string & name,const std::string & description,NativePixmap::Capability capabilities)64 NativePixmapFactory::NativePixmapFactory (const std::string& name, const std::string& description, NativePixmap::Capability capabilities)
65 	: FactoryBase	(name, description)
66 	, m_capabilities(capabilities)
67 {
68 }
69 
~NativePixmapFactory(void)70 NativePixmapFactory::~NativePixmapFactory (void)
71 {
72 }
73 
createPixmap(NativeDisplay * nativeDisplay,EGLDisplay display,EGLConfig config,const EGLAttrib * attribList,int width,int height) const74 NativePixmap* NativePixmapFactory::createPixmap (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const
75 {
76 	DE_UNREF(display && config && attribList);
77 	return createPixmap(nativeDisplay, width, height);
78 }
79 
80 } // eglu
81