Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 1 | Distribution |
| 2 | ============ |
| 3 | |
| 4 | Along with the interface definitions, the following drivers, state trackers, |
| 5 | and auxiliary modules are shipped in the standard Gallium distribution. |
| 6 | |
| 7 | Drivers |
| 8 | ------- |
| 9 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 10 | Intel i915 |
| 11 | ^^^^^^^^^^ |
| 12 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 13 | Driver for Intel i915 and i945 chipsets. |
| 14 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 15 | Identity |
| 16 | ^^^^^^^^ |
| 17 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 18 | Wrapper driver. The identity driver is a simple skeleton that passes through |
| 19 | all of its :ref:`Context` and :ref:`Screen` methods to an underlying Context |
| 20 | and Screen, and as such, it is an excellent starting point for new drivers. |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 21 | |
| 22 | LLVM Softpipe |
| 23 | ^^^^^^^^^^^^^ |
| 24 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 25 | A version of :ref:`softpipe` that uses the Low-Level Virtual Machine to |
| 26 | dynamically generate optimized rasterizing pipelines. |
| 27 | |
| 28 | nVidia nvfx |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 29 | ^^^^^^^^^^^ |
| 30 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 31 | Driver for the nVidia nv30 and nv40 families of GPUs. |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 32 | |
| 33 | nVidia nv50 |
| 34 | ^^^^^^^^^^^ |
| 35 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 36 | Driver for the nVidia nv50 family of GPUs. |
| 37 | |
Corbin Simpson | 0a663bb | 2010-07-27 16:34:57 -0700 | [diff] [blame] | 38 | VMware SVGA |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 39 | ^^^^^^^^^^^ |
| 40 | |
Corbin Simpson | 0a663bb | 2010-07-27 16:34:57 -0700 | [diff] [blame] | 41 | Driver for VMware virtualized guest operating system graphics processing. |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 42 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 43 | ATI r300 |
| 44 | ^^^^^^^^ |
| 45 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 46 | Driver for the ATI/AMD r300, r400, and r500 families of GPUs. |
| 47 | |
| 48 | .. _softpipe: |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 49 | |
| 50 | Softpipe |
| 51 | ^^^^^^^^ |
| 52 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 53 | Reference software rasterizer. Slow but accurate. |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 54 | |
| 55 | Trace |
| 56 | ^^^^^ |
| 57 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 58 | Wrapper driver. Trace dumps an XML record of the calls made to the |
| 59 | :ref:`Context` and :ref:`Screen` objects that it wraps. |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 60 | |
Jakob Bornecrantz | fe19935 | 2010-08-15 00:57:18 +0100 | [diff] [blame] | 61 | Rbug |
| 62 | ^^^^ |
| 63 | |
| 64 | Wrapper driver. :ref:`rbug` driver used with stand alone rbug-gui. |
| 65 | |
Jakob Bornecrantz | d377abd | 2010-08-20 02:28:36 +0100 | [diff] [blame] | 66 | .. _galahad: |
| 67 | |
| 68 | Galahad |
| 69 | ^^^^^^^ |
| 70 | |
| 71 | Wrapper driver. Sanity checker for the internal gallium state. Normally |
| 72 | a driver should n't have to sanity check the input it gets from a state |
| 73 | tracker. Any wrong state received should be perceived as a state tracker bug. |
| 74 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 75 | State Trackers |
| 76 | -------------- |
| 77 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 78 | .. _dri: |
| 79 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 80 | Direct Rendering Infrastructure |
| 81 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 82 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 83 | Tracker that implements the client-side DRI protocol, for providing direct |
| 84 | acceleration services to X11 servers with the DRI extension. Supports DRI1 |
| 85 | and DRI2. Only GL is supported. |
| 86 | |
| 87 | .. _egl: |
| 88 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 89 | EGL |
| 90 | ^^^ |
| 91 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 92 | Tracker for the Khronos EGL standard, used to set up GL and GLES contexts |
| 93 | without extra knowledge of the underlying windowing system. |
| 94 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 95 | GLX |
| 96 | ^^^ |
| 97 | |
| 98 | MesaGL |
| 99 | ^^^^^^ |
| 100 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 101 | Tracker implementing a GL state machine. Not usable as a standalone tracker; |
| 102 | Mesa should be built with another state tracker, such as :ref:`DRI` or |
| 103 | :ref:`EGL`. |
| 104 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 105 | Python |
| 106 | ^^^^^^ |
| 107 | |
| 108 | OpenVG |
| 109 | ^^^^^^ |
| 110 | |
| 111 | WGL |
| 112 | ^^^ |
| 113 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 114 | Xorg/XFree86 DDX |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 115 | ^^^^^^^^^^^^^^^^ |
| 116 | |
Corbin Simpson | e7d05f1 | 2010-06-16 16:52:52 -0700 | [diff] [blame] | 117 | Tracker for XFree86 and Xorg X11 servers. Provides device-dependent |
| 118 | modesetting and acceleration as a DDX driver. |
| 119 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 120 | Auxiliary |
| 121 | --------- |
| 122 | |
José Fonseca | 976afaf | 2010-02-03 15:56:36 +0000 | [diff] [blame] | 123 | OS |
| 124 | ^^ |
| 125 | |
| 126 | The OS module contains the abstractions for basic operating system services: |
| 127 | |
| 128 | * memory allocation |
| 129 | * simple message logging |
| 130 | * obtaining run-time configuration option |
| 131 | * threading primitives |
| 132 | |
| 133 | This is the bare minimum required to port Gallium to a new platform. |
| 134 | |
| 135 | The OS module already provides the implementations of these abstractions for |
| 136 | the most common platforms. When targeting an embedded platform no |
| 137 | implementation will be provided -- these must be provided separately. |
| 138 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 139 | CSO Cache |
| 140 | ^^^^^^^^^ |
| 141 | |
Corbin Simpson | 4f52dfe | 2010-01-18 15:24:51 -0800 | [diff] [blame] | 142 | The CSO cache is used to accelerate preparation of state by saving |
| 143 | driver-specific state structures for later use. |
| 144 | |
Corbin Simpson | 2598f00 | 2010-01-18 17:12:13 -0800 | [diff] [blame] | 145 | .. _draw: |
| 146 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 147 | Draw |
| 148 | ^^^^ |
| 149 | |
Corbin Simpson | 2b4ad02 | 2010-01-18 16:40:39 -0800 | [diff] [blame] | 150 | Draw is a software :term:`TCL` pipeline for hardware that lacks vertex shaders |
Corbin Simpson | 4f52dfe | 2010-01-18 15:24:51 -0800 | [diff] [blame] | 151 | or other essential parts of pre-rasterization vertex preparation. |
| 152 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 153 | Gallivm |
| 154 | ^^^^^^^ |
| 155 | |
| 156 | Indices |
| 157 | ^^^^^^^ |
| 158 | |
Corbin Simpson | 4f52dfe | 2010-01-18 15:24:51 -0800 | [diff] [blame] | 159 | Indices provides tools for translating or generating element indices for |
| 160 | use with element-based rendering. |
Corbin Simpson | 6a2936b | 2010-01-13 20:46:53 -0800 | [diff] [blame] | 161 | |
Corbin Simpson | 4f52dfe | 2010-01-18 15:24:51 -0800 | [diff] [blame] | 162 | Pipe Buffer Managers |
| 163 | ^^^^^^^^^^^^^^^^^^^^ |
| 164 | |
| 165 | Each of these managers provides various services to drivers that are not |
| 166 | fully utilizing a memory manager. |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 167 | |
| 168 | Remote Debugger |
| 169 | ^^^^^^^^^^^^^^^ |
| 170 | |
| 171 | Runtime Assembly Emission |
| 172 | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 173 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 174 | TGSI |
| 175 | ^^^^ |
| 176 | |
Corbin Simpson | 4f52dfe | 2010-01-18 15:24:51 -0800 | [diff] [blame] | 177 | The TGSI auxiliary module provides basic utilities for manipulating TGSI |
| 178 | streams. |
Corbin Simpson | 6a2936b | 2010-01-13 20:46:53 -0800 | [diff] [blame] | 179 | |
Corbin Simpson | acb8073 | 2009-12-24 01:53:48 -0800 | [diff] [blame] | 180 | Translate |
| 181 | ^^^^^^^^^ |
| 182 | |
| 183 | Util |
| 184 | ^^^^ |
| 185 | |