gl4es updated, added latest changes by ptitSeb

This commit is contained in:
lubomyr
2017-02-06 19:34:51 +02:00
parent 13295374d7
commit 5df129f2f3
25 changed files with 895 additions and 6740 deletions

View File

@@ -3,7 +3,7 @@
{% include "base/headers.j2" %}
{% for func in functions %}
{% block definition scoped %}
{{ func.return }} glshim_{{ func.name }}({{ func.args|args }}) {
{{ func.return }} gl4es_{{ 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) }});