blob: ec6af42073a5f200f66d0ee4deb6bcfd387d311a [file] [log] [blame]
#include <cstdio>
#include <webgpu/webgpu.h>
int main() {
{% for function in by_category["function"] %}
printf("%p\n", {{as_cMethod(None, function.name)}});
{% endfor %}
{% for type in by_category["object"] if len(c_methods(type)) > 0 %}
{% for method in c_methods(type) %}
printf("%p\n", {{as_cMethod(type.name, method.name)}});
{% endfor %}
{% endfor %}
}