diff options
author | Marek Olšák <[email protected]> | 2018-05-02 18:59:54 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-05-10 18:39:58 -0400 |
commit | 2bd2c173e8e2fe9c9a589e9944a03672336fe0c6 (patch) | |
tree | 15280dcac593530ad1fb6a31f2a8d76c7053735a /src/gallium/drivers | |
parent | e720cb61354167e5ff75202affe86185a18386ba (diff) |
ac/gpu_info: add has_eqaa_surface_allocator
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index bf61b0071e7..fe0a20ba6cd 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -1082,7 +1082,7 @@ struct pipe_screen *radeonsi_screen_create(struct radeon_winsys *ws, * * Only MSAA color and depth buffers are overriden. */ - if (sscreen->info.drm_major == 3) { + if (sscreen->info.has_eqaa_surface_allocator) { const char *eqaa = debug_get_option("EQAA", NULL); unsigned s,z,f; |