From 2df430d234e0043839ea0c5bddc05994115b31df Mon Sep 17 00:00:00 2001 From: illusion <37698908+illusion0001@users.noreply.github.com> Date: Fri, 11 Dec 2020 03:43:51 -0500 Subject: [PATCH] Move gpu requirements out of collapsible for rov --- FAQ.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/FAQ.md b/FAQ.md index f8a1568e4..5733cf798 100644 --- a/FAQ.md +++ b/FAQ.md @@ -95,12 +95,15 @@ Using the Rasterizer-Ordered Views (ROV) feature of Direct3D 12 allows Xenia to "Rasterizer-ordered" here means that access to the buffer is synchronized — if multiple polygons in a single draw call are covering the same pixel, the buffer will be accessed in the correct order, without conflicts that would happen if the data was written through a regular unordered access view (UAV). You can read more about this feature at https://software.intel.com/en-us/gamedev/articles/rasterizer-order-views-101-a-primer, another common use for ROV in game development is order-independent transparency algorithms. -However, this is a hardware feature, and thus on older graphics cards, Xenia is limited to the RT path. The minimum requirements for ROV are: +However, this is a hardware feature, and thus on older graphics cards, Xenia is limited to the RT path. + +Rasterizer-ordered views are used by default in Xenia where available, but if you're experiencing graphical issues, you may try [disabling it in the config](Options/#disable-rov-rasterizer-ordered-views). + +The minimum requirements for ROV are: * Nvidia GeForce GTX 950 on desktops, GTX 965M on laptops (Maxwell 2nd generation — 2014) * AMD Radeon Vega (GCN 5th generation — 2017) * Intel HD Graphics 4000 (2012) -Rasterizer-ordered views are used by default in Xenia where available, but if you're experiencing graphical issues, you may try [disabling it in the config](Options/#disable-rov-rasterizer-ordered-views). # ### What are all of Xenia's options? For all of Xenia's options, see the [Options page](Options).