am ef075459: am 914bfa5f: am b9df7b5d: Allow geometry variation in 3D texture filteri...
[platform/upstream/VK-GL-CTS.git] / framework / egl / egluUnique.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 unique resources
22  *//*--------------------------------------------------------------------*/
23
24 #include "egluUnique.hpp"
25 #include "eglwLibrary.hpp"
26
27 namespace eglu
28 {
29
30 using namespace eglw;
31
32 UniqueDisplay::UniqueDisplay (const Library& egl, EGLDisplay display)
33         : m_egl         (egl)
34         , m_display     (display)
35 {
36 }
37
38 UniqueDisplay::~UniqueDisplay (void)
39 {
40         if (m_display != EGL_NO_DISPLAY)
41                 m_egl.terminate(m_display);
42 }
43
44 UniqueSurface::UniqueSurface (const Library& egl, EGLDisplay display, EGLSurface surface)
45         : m_egl         (egl)
46         , m_display     (display)
47         , m_surface     (surface)
48 {
49 }
50
51 UniqueSurface::~UniqueSurface (void)
52 {
53         if (m_surface != EGL_NO_SURFACE)
54                 m_egl.destroySurface(m_display, m_surface);
55 }
56
57 UniqueContext::UniqueContext (const Library& egl, EGLDisplay display, EGLContext context)
58         : m_egl         (egl)
59         , m_display     (display)
60         , m_context     (context)
61 {
62 }
63
64 UniqueContext::~UniqueContext (void)
65 {
66         if (m_context != EGL_NO_CONTEXT)
67                 m_egl.destroyContext(m_display, m_context);
68 }
69
70 ScopedCurrentContext::ScopedCurrentContext (const Library& egl, EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context)
71         : m_egl         (egl)
72         , m_display (display)
73 {
74         EGLU_CHECK_CALL(m_egl, makeCurrent(display, draw, read, context));
75 }
76
77 ScopedCurrentContext::~ScopedCurrentContext (void)
78 {
79         m_egl.makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
80 }
81
82 UniqueImage::UniqueImage (const Library& egl, EGLDisplay display, EGLImage image)
83         : m_egl         (egl)
84         , m_display     (display)
85         , m_image       (image)
86 {
87 }
88
89 UniqueImage::~UniqueImage (void)
90 {
91         if (m_image != EGL_NO_IMAGE)
92                 m_egl.destroyImageKHR(m_display, m_image);
93 }
94
95 } // eglu