Import dEQP.
[platform/upstream/VK-GL-CTS.git] / framework / egl / egluNativePixmap.cpp
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 // NativePixmap
30
31 NativePixmap::NativePixmap (Capability capabilities)
32         : m_capabilities(capabilities)
33 {
34 }
35
36 EGLNativePixmapType NativePixmap::getLegacyNative (void)
37 {
38         TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_LEGACY) == 0);
39         throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePixmapSurface()", DE_NULL, __FILE__, __LINE__);
40 }
41
42 void* NativePixmap::getPlatformNative (void)
43 {
44         TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_PLATFORM) == 0);
45         throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePlatformPixmapSurface()", DE_NULL, __FILE__, __LINE__);
46 }
47
48 void NativePixmap::readPixels (tcu::TextureLevel*)
49 {
50         TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_READ_PIXELS) == 0);
51         throw tcu::NotSupportedError("eglu::NativePixmap doesn't support readPixels", DE_NULL, __FILE__, __LINE__);
52 }
53
54 // NativePixmapFactory
55
56 NativePixmapFactory::NativePixmapFactory (const std::string& name, const std::string& description, NativePixmap::Capability capabilities)
57         : FactoryBase   (name, description)
58         , m_capabilities(capabilities)
59 {
60 }
61
62 NativePixmapFactory::~NativePixmapFactory (void)
63 {
64 }
65
66 NativePixmap* NativePixmapFactory::createPixmap (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const
67 {
68         DE_UNREF(display && config && attribList);
69         return createPixmap(nativeDisplay, width, height);
70 }
71
72 } // eglu