<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
I can if that's preferable.<br>
<br>
<div class="moz-cite-prefix">On 01/11/2017 04:24 PM, Timo Aaltonen
wrote:<br>
</div>
<blockquote
cite="mid:38a3c8f6-5239-c522-faa1-dad36bbb4e9c@ubuntu.com"
type="cite">
<pre wrap="">On 05.01.2017 23:29, Kyle Brenneman wrote:
</pre>
<blockquote type="cite">
<pre wrap="">---
src/egl/generate/eglFunctionList.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/egl/generate/eglFunctionList.py b/src/egl/generate/eglFunctionList.py
index b19b5f7..80cb834 100644
--- a/src/egl/generate/eglFunctionList.py
+++ b/src/egl/generate/eglFunctionList.py
@@ -53,12 +53,14 @@ method values:
Select the vendor that owns the current context.
"""
-def _eglFunc(name, method, static=False, public=False, inheader=None, prefix="", extension=None, retval=None):
+def _eglFunc(name, method, static=None, public=False, inheader=None, prefix="dispatch_", extension=None, retval=None):
"""
A convenience function to define an entry in the EGL function list.
"""
+ if static is None:
+ static = (not public and method != "custom")
if inheader is None:
- inheader = (not public)
+ inheader = (not static)
values = {
"method" : method,
"prefix" : prefix,
</pre>
</blockquote>
<pre wrap="">
You probably need to send a v3 with this added?
</pre>
</blockquote>
<br>
</body>
</html>