X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fandroid%2Fopengl%2Fsystem%2FGLESv1%2Fgl.cpp;fp=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fandroid%2Fopengl%2Fsystem%2FGLESv1%2Fgl.cpp;h=8aaf3472ea086235437b98112c3044c909a9e5b9;hb=e26c1ec581be598521517829adba8c8dd23a768f;hp=0000000000000000000000000000000000000000;hpb=6699c1aea74eeb0eb400e6299079f0c7576f716f;p=iec.git diff --git a/src/type3_AndroidCloud/anbox-master/android/opengl/system/GLESv1/gl.cpp b/src/type3_AndroidCloud/anbox-master/android/opengl/system/GLESv1/gl.cpp new file mode 100644 index 0000000..8aaf347 --- /dev/null +++ b/src/type3_AndroidCloud/anbox-master/android/opengl/system/GLESv1/gl.cpp @@ -0,0 +1,165 @@ +/* +* Copyright 2011 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. +*/ + +#include "EGLClientIface.h" +#include "HostConnection.h" +#include "GLEncoder.h" +#include "GLES/gl.h" +#include "GLES/glext.h" +#include "ErrorLog.h" +#include "gralloc_cb.h" +#include "ThreadInfo.h" +#include "EGLImage.h" + + +//XXX: fix this macro to get the context from fast tls path +#define GET_CONTEXT GLEncoder * ctx = getEGLThreadInfo()->hostConn->glEncoder(); + +#include "gl_entry.cpp" + +//The functions table +#include "gl_ftable.h" + +static EGLClient_eglInterface * s_egl = NULL; +static EGLClient_glesInterface * s_gl = NULL; + +#define DEFINE_AND_VALIDATE_HOST_CONNECTION(ret) \ + HostConnection *hostCon = HostConnection::get(); \ + if (!hostCon) { \ + ALOGE("egl: Failed to get host connection\n"); \ + return ret; \ + } \ + renderControl_encoder_context_t *rcEnc = hostCon->rcEncoder(); \ + if (!rcEnc) { \ + ALOGE("egl: Failed to get renderControl encoder context\n"); \ + return ret; \ + } + +//GL extensions +void glEGLImageTargetTexture2DOES(void * self, GLenum target, GLeglImageOES img) +{ + (void)self; + + DBG("glEGLImageTargetTexture2DOES v1 target=%#x img=%p", target, img); + + EGLImage_t *image = (EGLImage_t*)img; + + if (image->target == EGL_NATIVE_BUFFER_ANDROID) { + //TODO: check error - we don't have a way to set gl error + android_native_buffer_t* native_buffer = image->native_buffer; + + if (native_buffer->common.magic != ANDROID_NATIVE_BUFFER_MAGIC) { + return; + } + + if (native_buffer->common.version != sizeof(android_native_buffer_t)) { + return; + } + + GET_CONTEXT; + DEFINE_AND_VALIDATE_HOST_CONNECTION(); + + ctx->override2DTextureTarget(target); + rcEnc->rcBindTexture(rcEnc, + ((cb_handle_t *)(native_buffer->handle))->hostHandle); + ctx->restore2DTextureTarget(); + } + else if (image->target == EGL_GL_TEXTURE_2D_KHR) { + GET_CONTEXT; + ctx->override2DTextureTarget(target); + GLeglImageOES hostImage = reinterpret_cast((intptr_t)image->host_egl_image); + ctx->m_glEGLImageTargetTexture2DOES_enc(self, target, hostImage); + ctx->restore2DTextureTarget(); + } +} + +void glEGLImageTargetRenderbufferStorageOES(void *self, GLenum target, GLeglImageOES image) +{ + (void)self; + (void)target; + + DBG("glEGLImageTargetRenderbufferStorageOES v1 target=%#x image=%p", + target, image); + //TODO: check error - we don't have a way to set gl error + android_native_buffer_t* native_buffer = (android_native_buffer_t*)image; + + if (native_buffer->common.magic != ANDROID_NATIVE_BUFFER_MAGIC) { + return; + } + + if (native_buffer->common.version != sizeof(android_native_buffer_t)) { + return; + } + + DEFINE_AND_VALIDATE_HOST_CONNECTION(); + rcEnc->rcBindRenderbuffer(rcEnc, + ((cb_handle_t *)(native_buffer->handle))->hostHandle); + + return; +} + +void * getProcAddress(const char * procname) +{ + // search in GL function table + for (int i=0; igetGLString(name); + } + return NULL; +} + +void init() +{ + GET_CONTEXT; + ctx->m_glEGLImageTargetTexture2DOES_enc = ctx->glEGLImageTargetTexture2DOES; + ctx->glEGLImageTargetTexture2DOES = &glEGLImageTargetTexture2DOES; + ctx->glEGLImageTargetRenderbufferStorageOES = &glEGLImageTargetRenderbufferStorageOES; + ctx->glGetString = &my_glGetString; +} + +extern "C" { +EGLClient_glesInterface * init_emul_gles(EGLClient_eglInterface *eglIface) +{ + s_egl = eglIface; + + if (!s_gl) { + s_gl = new EGLClient_glesInterface(); + s_gl->getProcAddress = getProcAddress; + s_gl->finish = finish; + s_gl->init = init; + } + + return s_gl; +} +} //extern + +