Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-09 | gallium: create target for gdi libgl | Keith Whitwell | |
2010-03-09 | gallium: create helper for swrast+xlib combination | Keith Whitwell | |
Several targets may want to reuse this code. It's pretty simple, not sure if this is really a win. | |||
2010-03-09 | scons: Fix the libg-xlib Sconscript. | José Fonseca | |
2010-03-09 | targets/libgl-xlib: add code to inject trace and identity layers | Keith Whitwell | |
Finally we can inject layers for debug, trace and "other" with relative ease between state-tracker and driver. | |||
2010-03-09 | ws/xlib: remove self-knowledge about users of xlib winsys | Keith Whitwell | |
Several software rasterizers can make use of this winsys, but there isn't any reason why the winsys itself should know about them. This change moves that information into the libgl-xlib target. Need to fix up other targets making use of this winsys. | |||
2010-03-09 | scons: Add new targets option. | José Fonseca | |
This will likely change. Most probably we'll just add an alias to indvidual targets and use the regular scons targets arguments. | |||
2010-03-08 | gallium: introduce target directory | Keith Whitwell | |
Currently there are still at least two functions bundled up inside the winsys concept: a) that of a backend resource manager, sometimes capable of performing present() operations, b) the initialization code/routine for the whole driver stack. The inclusion of (b) makes it difficult to share implementations of (a) between different drivers. For instance, a clean xlib winsys could be of use for software-rasterized VG, GLES, EGL, etc, stacks. But that is only true as long as there is no dependency from the winsys to higher level code, as would be the case when we include (b) in this component. This change creates a new gallium/targets subtree, specifically for implementing the glue needed to build individual driver stacks, and moves that code out of a single example winsys, namely xlib. Other drivers continue to build unchanged, but hopefully can migrate to this structure over time. |