blob: 3d9724c947b343436a0d49ad3e8ba103d189f8a4 [file] [log] [blame]
Archanae829cd62021-12-24 12:50:36 +05301{% for driver in drivers if driver.type == "opaque" -%}
2{% for capability in driver.capabilities if entry_point in capability.entry_points -%}
3#if ({% if capability.depend_on is defined -%}{{ capability.depend_on }} {% else -%} {{ 1 }} {% endif %})
4{%- filter indent(width = nest_indent) %}
5case {{ driver.location }}:
6 return({{driver.prefix}}_{{driver.type}}_{{entry_point}}({{entry_point_attributes(driver) | indent(20)}}));
7{% endfilter -%}
8#endif
9{% endfor %}
10{% endfor %}