1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/openvg/openvgrefimplementation/sfopenvg/egl/egl.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,164 @@
1.4 +/*
1.5 +* Copyright (c) 2009 Symbian Foundation Ltd
1.6 +* This component and the accompanying materials are made available
1.7 +* under the terms of the License "Eclipse Public License v1.0"
1.8 +* which accompanies this distribution, and is available
1.9 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +*
1.11 +* Initial Contributors:
1.12 +* Symbian Foundation Ltd - initial contribution.
1.13 +*
1.14 +* Contributors:
1.15 +*
1.16 +* Description:
1.17 +* Implementation of EGL interface
1.18 +*/
1.19 +
1.20 +#include <egl.h>
1.21 +#include "eglinternal.h"
1.22 +#include <stdarg.h>
1.23 +
1.24 +
1.25 +extern "C" {
1.26 +
1.27 +EXPORT_C EGLint eglGetError(void)
1.28 + {
1.29 + return do_eglGetError();
1.30 + }
1.31 +EXPORT_C EGLDisplay eglGetDisplay(EGLNativeDisplayType display_id)
1.32 + {
1.33 + return do_eglGetDisplay(display_id);
1.34 + }
1.35 +EXPORT_C EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
1.36 + {
1.37 + return do_eglInitialize(dpy, major, minor);
1.38 + }
1.39 +EXPORT_C EGLBoolean eglTerminate(EGLDisplay dpy)
1.40 + {
1.41 + return do_eglTerminate(dpy);
1.42 + }
1.43 +EXPORT_C const char* eglQueryString(EGLDisplay dpy, EGLint name)
1.44 + {
1.45 + return do_eglQueryString(dpy, name);
1.46 + }
1.47 +EXPORT_C EGLBoolean eglGetConfigs(EGLDisplay dpy, EGLConfig *configs,EGLint config_size, EGLint *num_config)
1.48 + {
1.49 + return do_eglGetConfigs(dpy, configs,config_size, num_config);
1.50 + }
1.51 +EXPORT_C EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list,EGLConfig *configs, EGLint config_size,EGLint *num_config)
1.52 + {
1.53 + return do_eglChooseConfig(dpy, attrib_list,configs, config_size,num_config);
1.54 + }
1.55 +EXPORT_C EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,EGLint attribute, EGLint *value)
1.56 + {
1.57 + return do_eglGetConfigAttrib(dpy, config,attribute, value);
1.58 + }
1.59 +EXPORT_C EGLSurface eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,EGLNativeWindowType win,const EGLint *attrib_list)
1.60 + {
1.61 + return do_eglCreateWindowSurface(dpy, config,win,attrib_list);
1.62 + }
1.63 +EXPORT_C EGLSurface eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config,const EGLint *attrib_list)
1.64 + {
1.65 + return do_eglCreatePbufferSurface(dpy, config,attrib_list);
1.66 + }
1.67 +EXPORT_C EGLSurface eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config,EGLNativePixmapType pixmap,const EGLint *attrib_list)
1.68 + {
1.69 + return do_eglCreatePixmapSurface(dpy, config,pixmap,attrib_list);
1.70 + }
1.71 +EXPORT_C EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
1.72 + {
1.73 + return do_eglDestroySurface(dpy, surface);
1.74 + }
1.75 +EXPORT_C EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface,EGLint attribute, EGLint *value)
1.76 + {
1.77 + return do_eglQuerySurface(dpy, surface,attribute, value);
1.78 + }
1.79 +EXPORT_C EGLBoolean eglBindAPI(EGLenum api)
1.80 + {
1.81 + return do_eglBindAPI(api);
1.82 + }
1.83 +EXPORT_C EGLenum eglQueryAPI(void)
1.84 + {
1.85 + return do_eglQueryAPI();
1.86 + }
1.87 +EXPORT_C EGLBoolean eglWaitClient(void)
1.88 + {
1.89 + return do_eglWaitClient();
1.90 + }
1.91 +EXPORT_C EGLBoolean eglReleaseThread(void)
1.92 + {
1.93 + return do_eglReleaseThread();
1.94 + }
1.95 +EXPORT_C EGLSurface eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer,EGLConfig config, const EGLint *attrib_list)
1.96 + {
1.97 + return do_eglCreatePbufferFromClientBuffer(dpy, buftype, buffer,config, attrib_list);
1.98 + }
1.99 +EXPORT_C EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface,EGLint attribute, EGLint value)
1.100 + {
1.101 + return do_eglSurfaceAttrib(dpy, surface,attribute, value);
1.102 + }
1.103 +EXPORT_C EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1.104 + {
1.105 + return do_eglBindTexImage(dpy, surface, buffer);
1.106 + }
1.107 +EXPORT_C EGLBoolean eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1.108 + {
1.109 + return do_eglReleaseTexImage(dpy, surface, buffer);
1.110 + }
1.111 +EXPORT_C EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
1.112 + {
1.113 + return do_eglSwapInterval(dpy, interval);
1.114 + }
1.115 +EXPORT_C EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,EGLContext share_context,const EGLint *attrib_list)
1.116 + {
1.117 + return do_eglCreateContext(dpy, config,share_context,attrib_list);
1.118 + }
1.119 +EXPORT_C EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
1.120 + {
1.121 + return do_eglDestroyContext(dpy, ctx);
1.122 + }
1.123 +EXPORT_C EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw,EGLSurface read, EGLContext ctx)
1.124 + {
1.125 + return do_eglMakeCurrent(dpy, draw,read, ctx);
1.126 + }
1.127 +EXPORT_C EGLContext eglGetCurrentContext(void)
1.128 + {
1.129 + return do_eglGetCurrentContext();
1.130 + }
1.131 +EXPORT_C EGLSurface eglGetCurrentSurface(EGLint readdraw)
1.132 + {
1.133 + return do_eglGetCurrentSurface(readdraw);
1.134 + }
1.135 +EXPORT_C EGLDisplay eglGetCurrentDisplay(void)
1.136 + {
1.137 + return do_eglGetCurrentDisplay();
1.138 + }
1.139 +EXPORT_C EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx,EGLint attribute, EGLint *value)
1.140 + {
1.141 + return do_eglQueryContext(dpy, ctx,attribute, value);
1.142 + }
1.143 +EXPORT_C EGLBoolean eglWaitGL(void)
1.144 + {
1.145 + return do_eglWaitGL();
1.146 + }
1.147 +EXPORT_C EGLBoolean eglWaitNative(EGLint engine)
1.148 + {
1.149 + return do_eglWaitNative(engine);
1.150 + }
1.151 +EXPORT_C EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface surface)
1.152 + {
1.153 + return do_eglSwapBuffers(dpy, surface);
1.154 + }
1.155 +EXPORT_C EGLBoolean eglCopyBuffers(EGLDisplay dpy, EGLSurface surface,EGLNativePixmapType target)
1.156 + {
1.157 + return do_eglCopyBuffers(dpy, surface,target);
1.158 + }
1.159 +
1.160 +typedef void (*eglfPtr)(...);
1.161 +EXPORT_C void (*eglGetProcAddress(const char *procname))(...)
1.162 + {
1.163 + eglfPtr pname = do_eglGetProcAddress(procname);
1.164 + return pname;
1.165 + }
1.166 +}
1.167 +