mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-13 04:04:14 +08:00
99f11d0e18
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.
10 lines
195 B
Plaintext
10 lines
195 B
Plaintext
# Configuration for standalone mode i965 debug
|
|
|
|
include $(TOP)/configs/linux-debug
|
|
|
|
CONFIG_NAME = linux-i965
|
|
|
|
GALLIUM_DRIVER_DIRS = i965
|
|
GALLIUM_WINSYS_DIRS = drm/i965/xlib
|
|
GALLIUM_TARGET_DIRS =
|