{% extends "reports/base.html" %} {% load report_tags %} {% load cycle %} {% block css %} th.alt, td.alt { background: #f6f6f6; } td.true { background: #3f3; } td.false { background: #f33; } td.true.alt { background: #2e2; } td.false.alt { background: #e22; } .device-status ul { margin: 0; padding: 0; } .device-status li { list-style: none; } {% endblock %} {% block title %} OpenGL capabilities report: {{ selected|join:' vs. ' }} {% endblock %} {% block heading %} OpenGL capabilities report {% endblock %} {% block content %}
The table here shows the features reported for the following devices:
Different driver versions may have different feature sets, and we may have conflicting reports from the same driver version. There is a column for each distinct set of reported features.
Green cells indicate supported extensions; red cells indicate non-supported extensions.
{% for ext in all_exts %} {% if not forloop.counter0|mod:30 %} | |
{% for device in devices %} |
{{ device.0.renderer }} ({{ device.0.os }}):
|
---|---|
{% endfor %} {% endfor %} {% for limit in all_limits %} {% if not forloop.counter|mod:30 %} | |
{% for device in devices %} |
{{ device.0.renderer }} ({{ device.0.os }}):
|
{{ device.2.0|dictget:limit }} {% endfor %} {% endfor %} |