egl_object.h revision ada798b7ca7cabc255aa159964b64975e7fdb2df
1/*
2 ** Copyright 2007, The Android Open Source Project
3 **
4 ** Licensed under the Apache License, Version 2.0 (the "License");
5 ** you may not use this file except in compliance with the License.
6 ** You may obtain a copy of the License at
7 **
8 **     http://www.apache.org/licenses/LICENSE-2.0
9 **
10 ** Unless required by applicable law or agreed to in writing, software
11 ** distributed under the License is distributed on an "AS IS" BASIS,
12 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ** See the License for the specific language governing permissions and
14 ** limitations under the License.
15 */
16
17#ifndef ANDROID_EGL_OBJECT_H
18#define ANDROID_EGL_OBJECT_H
19
20
21#include <ctype.h>
22#include <stdint.h>
23#include <stdlib.h>
24
25#include <EGL/egl.h>
26#include <EGL/eglext.h>
27#include <GLES/gl.h>
28#include <GLES/glext.h>
29
30#include <utils/threads.h>
31#include <utils/String8.h>
32
33#include <system/window.h>
34
35#include "egl_display.h"
36
37// ----------------------------------------------------------------------------
38namespace android {
39// ----------------------------------------------------------------------------
40
41struct egl_display_t;
42
43class egl_object_t {
44    egl_display_t *display;
45    mutable volatile int32_t count;
46
47protected:
48    virtual ~egl_object_t();
49
50public:
51    egl_object_t(egl_display_t* display);
52    void destroy();
53
54    inline int32_t incRef() { return android_atomic_inc(&count); }
55    inline int32_t decRef() { return android_atomic_dec(&count); }
56    inline egl_display_t* getDisplay() const { return display; }
57
58private:
59    void terminate();
60    static bool get(egl_display_t const* display, egl_object_t* object);
61
62public:
63    template <typename N, typename T>
64    class LocalRef {
65        egl_object_t* ref;
66        LocalRef();
67        LocalRef(const LocalRef* rhs);
68    public:
69        ~LocalRef();
70        explicit LocalRef(egl_object_t* rhs);
71        explicit LocalRef(egl_display_t const* display, T o) : ref(0) {
72            egl_object_t* native = reinterpret_cast<N*>(o);
73            if (o && egl_object_t::get(display, native)) {
74                ref = native;
75            }
76        }
77        inline N* get() {
78            return static_cast<N*>(ref);
79        }
80        void acquire() const;
81        void release() const;
82        void terminate();
83    };
84    template <typename N, typename T>
85    friend class LocalRef;
86};
87
88template<typename N, typename T>
89egl_object_t::LocalRef<N, T>::LocalRef(egl_object_t* rhs) : ref(rhs) {
90    if (ref) {
91        ref->incRef();
92    }
93}
94
95template <typename N, typename T>
96egl_object_t::LocalRef<N,T>::~LocalRef() {
97    if (ref) {
98        ref->destroy();
99    }
100}
101
102template <typename N, typename T>
103void egl_object_t::LocalRef<N,T>::acquire() const {
104    if (ref) {
105        ref->incRef();
106    }
107}
108
109template <typename N, typename T>
110void egl_object_t::LocalRef<N,T>::release() const {
111    if (ref) {
112        if (ref->decRef() == 1) {
113            // shouldn't happen because this is called from LocalRef
114            ALOGE("LocalRef::release() removed the last reference!");
115        }
116    }
117}
118
119template <typename N, typename T>
120void egl_object_t::LocalRef<N,T>::terminate() {
121    if (ref) {
122        ref->terminate();
123    }
124}
125
126// ----------------------------------------------------------------------------
127
128class egl_surface_t : public egl_object_t {
129protected:
130    ~egl_surface_t() {
131        ANativeWindow* const window = win.get();
132        if (window != NULL) {
133            native_window_set_buffers_format(window, 0);
134            if (native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL)) {
135                ALOGW("EGLNativeWindowType %p disconnect failed", window);
136            }
137        }
138    }
139public:
140    typedef egl_object_t::LocalRef<egl_surface_t, EGLSurface> Ref;
141
142    egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win,
143            EGLSurface surface, egl_connection_t const* cnx) :
144        egl_object_t(get_display(dpy)), dpy(dpy), surface(surface),
145                config(config), win(win), cnx(cnx) {
146    }
147    EGLDisplay dpy;
148    EGLSurface surface;
149    EGLConfig config;
150    sp<ANativeWindow> win;
151    egl_connection_t const* cnx;
152};
153
154class egl_context_t: public egl_object_t {
155protected:
156    ~egl_context_t() {}
157public:
158    typedef egl_object_t::LocalRef<egl_context_t, EGLContext> Ref;
159
160    egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config,
161            egl_connection_t const* cnx, int version);
162
163    void onLooseCurrent();
164    void onMakeCurrent(EGLSurface draw, EGLSurface read);
165
166    EGLDisplay dpy;
167    EGLContext context;
168    EGLConfig config;
169    EGLSurface read;
170    EGLSurface draw;
171    egl_connection_t const* cnx;
172    int version;
173    String8 gl_extensions;
174};
175
176class egl_image_t: public egl_object_t {
177protected:
178    ~egl_image_t() {}
179public:
180    typedef egl_object_t::LocalRef<egl_image_t, EGLImageKHR> Ref;
181
182    egl_image_t(EGLDisplay dpy, EGLContext context) :
183        egl_object_t(get_display(dpy)),
184        dpy(dpy), context(context), image(EGL_NO_IMAGE_KHR) { }
185    EGLDisplay dpy;
186    EGLContext context;
187    EGLImageKHR image;
188};
189
190class egl_sync_t: public egl_object_t {
191protected:
192    ~egl_sync_t() {}
193public:
194    typedef egl_object_t::LocalRef<egl_sync_t, EGLSyncKHR> Ref;
195
196    egl_sync_t(EGLDisplay dpy, EGLContext context, EGLSyncKHR sync) :
197        egl_object_t(get_display(dpy)), dpy(dpy), context(context), sync(sync) {
198    }
199    EGLDisplay dpy;
200    EGLContext context;
201    EGLSyncKHR sync;
202};
203
204// ----------------------------------------------------------------------------
205
206typedef egl_surface_t::Ref  SurfaceRef;
207typedef egl_context_t::Ref  ContextRef;
208typedef egl_image_t::Ref    ImageRef;
209typedef egl_sync_t::Ref     SyncRef;
210
211// ----------------------------------------------------------------------------
212
213template<typename NATIVE, typename EGL>
214static inline NATIVE* egl_to_native_cast(EGL arg) {
215    return reinterpret_cast<NATIVE*>(arg);
216}
217
218static inline
219egl_surface_t* get_surface(EGLSurface surface) {
220    return egl_to_native_cast<egl_surface_t>(surface);
221}
222
223static inline
224egl_context_t* get_context(EGLContext context) {
225    return egl_to_native_cast<egl_context_t>(context);
226}
227
228static inline
229egl_image_t* get_image(EGLImageKHR image) {
230    return egl_to_native_cast<egl_image_t>(image);
231}
232
233static inline
234egl_sync_t* get_sync(EGLSyncKHR sync) {
235    return egl_to_native_cast<egl_sync_t>(sync);
236}
237
238// ----------------------------------------------------------------------------
239}; // namespace android
240// ----------------------------------------------------------------------------
241
242#endif // ANDROID_EGL_OBJECT_H
243