95 lines
2.9 KiB
C++
95 lines
2.9 KiB
C++
/*
|
|
* Copyright (C) 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 "OpenGLESDispatch/GLESv1Dispatch.h"
|
|
#include "OpenGLESDispatch/EGLDispatch.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "emugl/common/shared_library.h"
|
|
|
|
extern EGLDispatch s_egl;
|
|
|
|
static emugl::SharedLibrary *s_gles1_lib = NULL;
|
|
|
|
// An unimplemented function which prints out an error message.
|
|
// To make it consistent with the guest, all GLES1 functions not supported by
|
|
// the driver should be redirected to this function.
|
|
|
|
static void gles1_unimplemented() {
|
|
fprintf(stderr, "Called unimplemented GLESv1 API\n");
|
|
}
|
|
|
|
//
|
|
// This function is called only once during initialiation before
|
|
// any thread has been created - hence it should NOT be thread safe.
|
|
//
|
|
|
|
#define DEFAULT_GLES_CM_LIB EMUGL_LIBNAME("GLES_CM_translator")
|
|
|
|
bool gles1_dispatch_init(GLESv1Dispatch* dispatch_table) {
|
|
const char* libName = getenv("ANDROID_GLESv1_LIB");
|
|
if (!libName) {
|
|
libName = DEFAULT_GLES_CM_LIB;
|
|
}
|
|
|
|
char error[256];
|
|
s_gles1_lib = emugl::SharedLibrary::open(libName, error, sizeof(error));
|
|
if (!s_gles1_lib) {
|
|
fprintf(stderr, "%s: Could not load %s [%s]\n", __FUNCTION__,
|
|
libName, error);
|
|
return false;
|
|
}
|
|
|
|
//
|
|
// init the GLES dispatch table
|
|
//
|
|
#define LOOKUP_SYMBOL(return_type,function_name,signature,callargs) \
|
|
dispatch_table-> function_name = reinterpret_cast< function_name ## _t >( \
|
|
s_gles1_lib->findSymbol(#function_name));
|
|
|
|
#define LOOKUP_EXT_SYMBOL(return_type,function_name,signature,callargs) \
|
|
dispatch_table-> function_name = reinterpret_cast< function_name ## _t >( \
|
|
s_egl.eglGetProcAddress(#function_name));
|
|
|
|
LIST_GLES1_FUNCTIONS(LOOKUP_SYMBOL,LOOKUP_EXT_SYMBOL)
|
|
|
|
return true;
|
|
}
|
|
|
|
//
|
|
// This function is called only during initialization of the decoder before
|
|
// any thread has been created - hence it should NOT be thread safe.
|
|
//
|
|
void *gles1_dispatch_get_proc_func(const char *name, void *userData)
|
|
{
|
|
void* func = NULL;
|
|
if (s_gles1_lib && !func) {
|
|
func = (void *)s_gles1_lib->findSymbol(name);
|
|
}
|
|
|
|
if (!func) {
|
|
func = (void *)s_egl.eglGetProcAddress(name);
|
|
}
|
|
|
|
// To make it consistent with the guest, redirect any unsupported functions
|
|
// to gles1_unimplemented.
|
|
if (!func) {
|
|
fprintf(stderr, "ERROR: Failed to find symbol for %s\n", name);
|
|
func = (void *)gles1_unimplemented;
|
|
}
|
|
return func;
|
|
}
|