mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 02:20:11 +01:00
zink: just check multiview availability to advertise extensions
now that legacy renderpasses are dropped, this can be more general Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36417>
This commit is contained in:
parent
c2284ae8a9
commit
7d2b36e50f
1 changed files with 1 additions and 1 deletions
|
|
@ -686,7 +686,7 @@ zink_init_screen_caps(struct zink_screen *screen)
|
|||
|
||||
caps->null_textures = screen->info.rb_image_feats.robustImageAccess;
|
||||
/* support OVR_multiview and OVR_multiview2 */
|
||||
caps->multiview = screen->info.have_vulkan13 ? 2 * screen->info.feats11.multiview : 0;
|
||||
caps->multiview = screen->info.feats11.multiview;
|
||||
caps->texrect = false;
|
||||
caps->multi_draw_indirect_partial_stride = false;
|
||||
caps->anisotropic_filter = screen->info.feats.features.samplerAnisotropy;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue