diff options
author | Thomas Hellstrom <[email protected]> | 2011-10-12 10:29:24 +0200 |
---|---|---|
committer | Thomas Hellstrom <[email protected]> | 2011-10-14 09:53:05 +0200 |
commit | ec7d5b8c021f655d49df4ba1ed2038ee423f9d5e (patch) | |
tree | 26b5dac14cdc8160585b2cebf780c41d09726242 /src/gallium/targets/dri-r600 | |
parent | 5a6ca7e9f24939cfacf2e8cd163a4efa9550ce1f (diff) |
drm_driver: Add a configuration function to the driver descriptor.
Adds a possibility for the state tracker manager to query the
target for a specific configuration.
Signed-off-by: Thomas Hellstrom <[email protected]>
Reviewed-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src/gallium/targets/dri-r600')
-rw-r--r-- | src/gallium/targets/dri-r600/target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/dri-r600/target.c b/src/gallium/targets/dri-r600/target.c index 1b8b6816ec1..3b7795b3507 100644 --- a/src/gallium/targets/dri-r600/target.c +++ b/src/gallium/targets/dri-r600/target.c @@ -21,4 +21,4 @@ static struct pipe_screen *create_screen(int fd) return screen; } -DRM_DRIVER_DESCRIPTOR("r600", "radeon", create_screen) +DRM_DRIVER_DESCRIPTOR("r600", "radeon", create_screen, NULL) |