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) : m_capabilities(capabilities)
34 {
35 }
36
getLegacyNative(void)37 EGLNativePixmapType NativePixmap::getLegacyNative(void)
38 {
39 TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_LEGACY) == 0);
40 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePixmapSurface()", DE_NULL, __FILE__,
41 __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,
48 __FILE__, __LINE__);
49 }
50
getPlatformNative(void)51 void *NativePixmap::getPlatformNative(void)
52 {
53 TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_PLATFORM) == 0);
54 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePlatformPixmapSurface()", DE_NULL,
55 __FILE__, __LINE__);
56 }
57
readPixels(tcu::TextureLevel *)58 void NativePixmap::readPixels(tcu::TextureLevel *)
59 {
60 TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_READ_PIXELS) == 0);
61 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support readPixels", DE_NULL, __FILE__, __LINE__);
62 }
63
64 // NativePixmapFactory
65
NativePixmapFactory(const std::string & name,const std::string & description,NativePixmap::Capability capabilities)66 NativePixmapFactory::NativePixmapFactory(const std::string &name, const std::string &description,
67 NativePixmap::Capability capabilities)
68 : FactoryBase(name, description)
69 , m_capabilities(capabilities)
70 {
71 }
72
~NativePixmapFactory(void)73 NativePixmapFactory::~NativePixmapFactory(void)
74 {
75 }
76
createPixmap(NativeDisplay * nativeDisplay,EGLDisplay display,EGLConfig config,const EGLAttrib * attribList,int width,int height) const77 NativePixmap *NativePixmapFactory::createPixmap(NativeDisplay *nativeDisplay, EGLDisplay display, EGLConfig config,
78 const EGLAttrib *attribList, int width, int height) const
79 {
80 DE_UNREF(display && config && attribList);
81 return createPixmap(nativeDisplay, width, height);
82 }
83
84 } // namespace eglu
85