The Loader implements the main XGL library (e.g. "XGL.dll" on Windows and "libXGL.so" on Linux). It handles layer management and driver management. The loader fully supports multi-gpu operation. As part of this, it dispatches API calls to the correct driver, and to the correct layers, based on the GPU object selected by the application.
The loader's driver management includes finding driver libraries and loading them. When a driver is initialized, the loader sets up its dispatch tables, using a very light-weight "trampoline" mechanism. To do so, it reserves space for a pointer in API objects (see below for more information about this).
The loader's layer management includes finding layer libraries and activating them as requested. The loader correctly sets up each activated layer, and its own dispatch tables in order to support all activated layers. Each active layer can intercept a subset of the full API entrypoints. A layer which doesn't intercept a given entrypoint will be skipped for that entrypoint. The loader supports layers that operate on multiple GPUs.
LIBXGL_DRIVERS_PATH directory for loader to search for ICD driver libraries to open
LIBXGL_LAYERS_PATH directory for loader to search for layer libraries that may get activated and used at xglCreateDevice() time.
LIBXGL_LAYER_NAMES colon-separated list of layer names to be activated (e.g., LIBXGL_LAYER_NAMES=MemTracker:DrawState).
Note: Both of the LIBXGL_*_PATH variables may contain more than one directory. Each directory must be separated by one of the following characters, depending on your OS:
#include "xglIcd.h" struct { XGL_LOADER_DATA reservedForLoader; // Reserve space for pointer to loader's dispatch table myObjectClass myObj; // Your driver's C++ class } xglObj; xglObj alloc_icd_obj() { xglObj *newObj = alloc_obj(); ... // Initialize pointer to loader's dispatch table with ICD_LOADER_MAGIC set_loader_magic_value(newObj); ... return newObj; }
Additional Notes: