{% 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; } td.changed { font-weight: bold; } .devices { vertical-align: top; } .devices ul { margin: 0; padding: 0; list-style-type: none; font-weight: normal; font-size: smaller; white-space: pre; } {% endblock %} {% block title %} OpenGL capabilities report: {{ selected|join:' vs. ' }} {% endblock %} {% block heading %} OpenGL capabilities report {% endblock %} {% block content %}

(Back to index page.)

The table here shows the features reported for devices with the following GL_RENDERER strings:

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. The column heading gives the short device name, and the set of driver versions with that feature set.

Green cells indicate supported extensions; red cells indicate non-supported extensions. Cells are marked with bold when their value differs from the previous cell in the same row.

{% for ext in all_exts %} {% if not forloop.counter0|mod:30 %}
{% for device in devices %} {{ device.0.device }} ({{ device.0.os }}):
    {% for driver in device.1 %}
  • {{ driver }}{% endfor %}
{% endfor %} {% endif %}
{{ ext }} (spec) {% for device in devices %} {% endfor %} {% endfor %} {% for limit in all_limits %} {% if not forloop.counter|mod:30 %}
{% for device in devices %} {{ device.0.device }} ({{ device.0.os }}):
    {% for driver in device.1 %}
  • {{ driver }}{% endfor %}
{% endfor %} {% endif %}
{{ limit|prettify_gl_title }} {% for device in devices %} {{ device.2.0|dictget:limit }} {% endfor %} {% endfor %}

Compare with other devices

{% endblock %}