zink: reeneable OVR_multiview2
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Fixes: 7d2b36e50f ("zink: just check multiview availability to advertise extensions")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37184>
This commit is contained in:
Mike Blumenkrantz 2025-09-04 13:13:09 -04:00
parent 90ac7d13dc
commit 1dd263ee68

View file

@ -687,7 +687,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.feats11.multiview;
caps->multiview = screen->info.feats11.multiview * 2;
caps->texrect = false;
caps->multi_draw_indirect_partial_stride = false;
caps->anisotropic_filter = screen->info.feats.features.samplerAnisotropy;