Merge vk-gl-cts/opengl-es-cts-3.2.3 into vk-gl-cts/opengl-es-cts-3.2.4
[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 using namespace eglw;
30
31 // NativePixmap
32
33 NativePixmap::NativePixmap (Capability capabilities)
34         : m_capabilities(capabilities)
35 {
36 }
37
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
44 void* NativePixmap::getPlatformNative (void)
45 {
46         TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_CREATE_SURFACE_PLATFORM) == 0);
47         throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePlatformPixmapSurface()", DE_NULL, __FILE__, __LINE__);
48 }
49
50 void NativePixmap::readPixels (tcu::TextureLevel*)
51 {
52         TCU_CHECK_INTERNAL((m_capabilities & CAPABILITY_READ_PIXELS) == 0);
53         throw tcu::NotSupportedError("eglu::NativePixmap doesn't support readPixels", DE_NULL, __FILE__, __LINE__);
54 }
55
56 // NativePixmapFactory
57
58 NativePixmapFactory::NativePixmapFactory (const std::string& name, const std::string& description, NativePixmap::Capability capabilities)
59         : FactoryBase   (name, description)
60         , m_capabilities(capabilities)
61 {
62 }
63
64 NativePixmapFactory::~NativePixmapFactory (void)
65 {
66 }
67
68 NativePixmap* NativePixmapFactory::createPixmap (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const
69 {
70         DE_UNREF(display && config && attribList);
71         return createPixmap(nativeDisplay, width, height);
72 }
73
74 } // eglu