Lines Matching refs:driver
9 calls into driver-specific functions.
11 2. Fallbacks for EGL API functions. A driver _could_ implement all the
19 When the apps calls eglInitialize() a device driver is selected and loaded
22 The built-in driver's entry point function is then called. This driver function
29 driver->API.Initialize and driver->API.Terminate _must_ be implemented
30 with driver-specific code (no default/fallback function is possible).
33 Shortly after, the driver->API.Initialize() function is executed. Any additional
34 driver initialization that wasn't done in the driver entry point should be
41 Certain EGL functions _must_ be implemented by the driver. This includes:
58 When eglTerminate() is called, the driver->API.Terminate() function is
59 called. The driver should clean up after itself. eglTerminate() will
60 then close/unload the driver (shared library).