diff options
author | Marek Olšák <[email protected]> | 2013-09-30 12:57:51 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-09-30 13:01:13 +0200 |
commit | 7b25f52a95fe13bfc86c4d421328f6df7690876c (patch) | |
tree | 0fcc0a258f3507d6e4db0001d026b7ebb2e70fd5 /src/gallium/drivers/r600/r600_pipe.c | |
parent | 868791f0baa0b51f4255c839448d3ca87ab1aa35 (diff) |
r600g,radeonsi: workaround for late shared screen initialization
Accidentally broken by the consolidation.
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 097a6b8cf40..6b31bd87efb 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -1018,6 +1018,8 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws) return NULL; } + ws->query_info(ws, &rscreen->b.info); + /* Set functions first. */ rscreen->b.b.context_create = r600_create_context; rscreen->b.b.destroy = r600_destroy_screen; @@ -1028,7 +1030,7 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws) rscreen->b.b.get_paramf = r600_get_paramf; rscreen->b.b.get_compute_param = r600_get_compute_param; rscreen->b.b.get_timestamp = r600_get_timestamp; - if (rscreen->b.chip_class >= EVERGREEN) { + if (rscreen->b.info.chip_class >= EVERGREEN) { rscreen->b.b.is_format_supported = evergreen_is_format_supported; } else { rscreen->b.b.is_format_supported = r600_is_format_supported; |