2009-03-04 03:31:44 +00:00
|
|
|
/*
|
|
|
|
** Copyright 2007, The Android Open Source Project
|
|
|
|
**
|
|
|
|
** 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
|
|
|
|
**
|
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
**
|
|
|
|
** 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
|
|
|
|
** limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_EGL_IMPL_H
|
|
|
|
#define ANDROID_EGL_IMPL_H
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include <EGL/egl.h>
|
2009-04-10 21:24:30 +00:00
|
|
|
#include <EGL/eglext.h>
|
2009-05-08 22:23:38 +00:00
|
|
|
#include <EGL/eglplatform.h>
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-10-14 09:06:37 +00:00
|
|
|
#include "hooks.h"
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
namespace android {
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct egl_connection_t
|
|
|
|
{
|
2010-04-09 20:37:34 +00:00
|
|
|
inline egl_connection_t() : dso(0) { }
|
2009-05-29 00:39:03 +00:00
|
|
|
void * dso;
|
2009-10-14 09:06:37 +00:00
|
|
|
gl_hooks_t * hooks[2];
|
2009-03-04 03:31:44 +00:00
|
|
|
EGLint major;
|
|
|
|
EGLint minor;
|
2009-10-14 09:06:37 +00:00
|
|
|
egl_t egl;
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
2009-05-15 05:44:23 +00:00
|
|
|
EGLAPI EGLImageKHR egl_get_image_for_current_context(EGLImageKHR image);
|
2009-04-10 21:24:30 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
}; // namespace android
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif /* ANDROID_EGL_IMPL_H */
|