diff options
author | Nicolai Hähnle <[email protected]> | 2017-08-03 14:53:41 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-08-04 10:46:01 +0200 |
commit | 12ce39d3de55357c8274619d4da973001a4609de (patch) | |
tree | 2b8779e78fac14f3d68a2b32984cea91a1e5e185 /src/gallium/drivers/r600 | |
parent | 3b5743ead5d2492f65abcd4521d84c9f8de469ba (diff) |
radeonsi: set drirc compiler options before calling common screen init
Also, access the options directly, allowing us to get rid of the
PIPE_SCREEN_xxx flags.
Tested-by: Dieter Nützel <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 9263659be32..023f1b4bd14 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -651,7 +651,7 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws, rscreen->b.b.get_shader_param = r600_get_shader_param; rscreen->b.b.resource_create = r600_resource_create; - if (!r600_common_screen_init(&rscreen->b, ws, config->flags)) { + if (!r600_common_screen_init(&rscreen->b, ws)) { FREE(rscreen); return NULL; } |