2013-02-08 19:13:46 +00:00
|
|
|
/*
|
2011-05-13 23:21:08 +00:00
|
|
|
** Copyright 2007, The Android Open Source Project
|
|
|
|
**
|
2013-02-08 19:13:46 +00:00
|
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
** you may not use this file except in compliance with the License.
|
|
|
|
** You may obtain a copy of the License at
|
2011-05-13 23:21:08 +00:00
|
|
|
**
|
2013-02-08 19:13:46 +00:00
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
2011-05-13 23:21:08 +00:00
|
|
|
**
|
2013-02-08 19:13:46 +00:00
|
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
** See the License for the specific language governing permissions and
|
2011-05-13 23:21:08 +00:00
|
|
|
** limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
|
|
|
|
|
|
|
#include <utils/threads.h>
|
|
|
|
|
|
|
|
#include "egl_object.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
namespace android {
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
egl_object_t::egl_object_t(egl_display_t* disp) :
|
2011-05-17 01:58:55 +00:00
|
|
|
display(disp), count(1) {
|
|
|
|
// NOTE: this does an implicit incRef
|
2011-05-13 23:21:08 +00:00
|
|
|
display->addObject(this);
|
|
|
|
}
|
|
|
|
|
2011-05-17 01:58:55 +00:00
|
|
|
egl_object_t::~egl_object_t() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void egl_object_t::terminate() {
|
|
|
|
// this marks the object as "terminated"
|
|
|
|
display->removeObject(this);
|
|
|
|
if (decRef() == 1) {
|
|
|
|
// shouldn't happen because this is called from LocalRef
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("egl_object_t::terminate() removed the last reference!");
|
2011-05-17 01:58:55 +00:00
|
|
|
}
|
2011-05-13 23:21:08 +00:00
|
|
|
}
|
|
|
|
|
2011-05-17 01:58:55 +00:00
|
|
|
void egl_object_t::destroy() {
|
|
|
|
if (decRef() == 1) {
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-14 04:50:07 +00:00
|
|
|
bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) {
|
2011-05-17 01:58:55 +00:00
|
|
|
// used by LocalRef, this does an incRef() atomically with
|
|
|
|
// checking that the object is valid.
|
2011-11-14 04:50:07 +00:00
|
|
|
return display->getObject(object);
|
2011-05-13 23:21:08 +00:00
|
|
|
}
|
|
|
|
|
2012-01-29 05:44:00 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-04-05 22:53:28 +00:00
|
|
|
egl_surface_t::egl_surface_t(egl_display_t* dpy, EGLConfig config,
|
|
|
|
EGLNativeWindowType win, EGLSurface surface,
|
|
|
|
egl_connection_t const* cnx) :
|
|
|
|
egl_object_t(dpy), surface(surface), config(config), win(win), cnx(cnx)
|
|
|
|
{
|
|
|
|
if (win) {
|
|
|
|
getDisplay()->onWindowSurfaceCreated();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
egl_surface_t::~egl_surface_t() {
|
|
|
|
ANativeWindow* const window = win.get();
|
|
|
|
if (window != NULL) {
|
|
|
|
native_window_set_buffers_format(window, 0);
|
|
|
|
if (native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL)) {
|
|
|
|
ALOGW("EGLNativeWindowType %p disconnect failed", window);
|
|
|
|
}
|
|
|
|
getDisplay()->onWindowSurfaceDestroyed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-01-29 05:44:00 +00:00
|
|
|
egl_context_t::egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config,
|
2012-02-14 01:09:30 +00:00
|
|
|
egl_connection_t const* cnx, int version) :
|
2012-04-04 23:53:42 +00:00
|
|
|
egl_object_t(get_display_nowake(dpy)), dpy(dpy), context(context),
|
|
|
|
config(config), read(0), draw(0), cnx(cnx), version(version) {
|
2012-01-29 05:44:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void egl_context_t::onLooseCurrent() {
|
|
|
|
read = NULL;
|
|
|
|
draw = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void egl_context_t::onMakeCurrent(EGLSurface draw, EGLSurface read) {
|
|
|
|
this->read = read;
|
|
|
|
this->draw = draw;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Here we cache the GL_EXTENSIONS string for this context and we
|
|
|
|
* add the extensions always handled by the wrapper
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (gl_extensions.isEmpty()) {
|
|
|
|
// call the implementation's glGetString(GL_EXTENSIONS)
|
2012-02-14 01:09:30 +00:00
|
|
|
const char* exts = (const char *)gEGLImpl.hooks[version]->gl.glGetString(GL_EXTENSIONS);
|
2012-01-29 05:44:00 +00:00
|
|
|
gl_extensions.setTo(exts);
|
|
|
|
if (gl_extensions.find("GL_EXT_debug_marker") < 0) {
|
|
|
|
String8 temp("GL_EXT_debug_marker ");
|
|
|
|
temp.append(gl_extensions);
|
|
|
|
gl_extensions.setTo(temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-13 23:21:08 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
}; // namespace android
|
|
|
|
// ----------------------------------------------------------------------------
|