tests: Add some tests for rasteriser-ordered views.

This commit is contained in:
Evan Tang
2023-10-13 16:35:12 -05:00
committed by Alexandre Julliard
parent f614d98759
commit 628acb6b96
Notes: Alexandre Julliard 2024-02-14 23:28:07 +01:00
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/651
12 changed files with 421 additions and 0 deletions

View File

@@ -196,6 +196,9 @@ static bool d3d9_runner_check_requirements(struct shader_runner *r)
if (runner->r.minimum_shader_model >= SHADER_MODEL_4_0)
return false;
if (runner->r.require_rov)
return false;
return true;
}