mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 10:37:57 -05:00
glasm: Implement SetAttribute ViewportMask
This commit is contained in:
@ -286,7 +286,8 @@ void SetupOptions(const IR::Program& program, const Profile& profile,
|
||||
if (info.uses_sparse_residency) {
|
||||
header += "OPTION EXT_sparse_texture2;";
|
||||
}
|
||||
if ((info.stores_viewport_index || info.stores_layer) && stage != Stage::Geometry) {
|
||||
if (((info.stores_viewport_index || info.stores_layer) && stage != Stage::Geometry) ||
|
||||
info.stores_viewport_mask) {
|
||||
if (profile.support_viewport_index_layer_non_geometry) {
|
||||
header += "OPTION NV_viewport_array2;";
|
||||
}
|
||||
|
Reference in New Issue
Block a user