diff options
author | Tom Stellard <[email protected]> | 2014-01-27 10:34:16 -0500 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2014-02-13 19:53:15 -0500 |
commit | 8481d208cee0e10250d5f34487defec414470bb5 (patch) | |
tree | b737362d4e1b320f387102d18b6b2b8759653cc9 /src/gallium/auxiliary/pipe-loader/pipe_loader.h | |
parent | 0320ba9988f370957bb029e846f51d485dd606f4 (diff) |
pipe-loader: Add auth_x parameter to pipe_loader_drm_probe_fd()
The caller can use this boolean parameter to tell the pipe-loader
to authenticate with the X server when probing a file descriptor.
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader/pipe_loader.h')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader.h b/src/gallium/auxiliary/pipe-loader/pipe_loader.h index e0525dfbe02..006401150da 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader.h +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader.h @@ -128,9 +128,13 @@ pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev); * This function is platform-specific. * * \sa pipe_loader_probe + * + * \param auth_x If true, the pipe-loader will attempt to + * authenticate with the X server. */ boolean -pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd); +pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd, + boolean auth_x); #endif |