glshim update

This commit is contained in:
lubomyr
2015-09-13 21:17:37 +03:00
parent f932c71f42
commit b0893e16bf
105 changed files with 2033 additions and 11571 deletions

4
project/jni/glshim/spec/template/base/wrap.c.j2 Executable file → Normal file
View File

@@ -1,11 +1,9 @@
{% extends "base/base.j2" %}
{% block main %}
{% block headers %}
{% include "base/headers.j2" %}
{% endblock %}
{% for func in functions %}
{% block definition scoped %}
{{ func.return }} {% block func_prefix %}{% endblock %}{{ func.name }}({{ func.args|args }}) {
{{ func.return }} {{ func.name }}({{ func.args|args }}) {
{% block load scoped %}{% endblock %}
{% block call scoped %}
{% if not func.void %}return {% endif %}{% block prefix %}wrap{% endblock %}_{{ func.name }}({{ func.args|args(0) }});