blob: d4df3415cbad4d43e3305933d9e14767d540562e [file] [log] [blame]
Mathias Agopian518ec112011-05-13 16:21:08 -07001/*
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#include <ctype.h>
18#include <stdint.h>
19#include <stdlib.h>
20
21#include <EGL/egl.h>
22#include <EGL/eglext.h>
23#include <GLES/gl.h>
24#include <GLES/glext.h>
25
26#include <utils/threads.h>
27
28#include "egl_object.h"
29
30// ----------------------------------------------------------------------------
31namespace android {
32// ----------------------------------------------------------------------------
33
34egl_object_t::egl_object_t(egl_display_t* disp) :
35 display(disp), terminated(0), count(1) {
36 display->addObject(this);
37}
38
39bool egl_object_t::get() {
40 return display->getObject(this);
41}
42
43bool egl_object_t::put() {
44 return display->removeObject(this);
45}
46
47// ----------------------------------------------------------------------------
48}; // namespace android
49// ----------------------------------------------------------------------------