summaryrefslogtreecommitdiff
path: root/premake5.lua
diff options
context:
space:
mode:
authorTriang3l <triang3l@yandex.ru>2020-09-06 00:52:30 +0300
committerTriang3l <triang3l@yandex.ru>2020-09-06 22:08:36 +0300
commitfed33be62b839ba4140160f78634facd9f15ec67 (patch)
tree804d518f35bc66896276e82ac6e91d9d1cc2009b /premake5.lua
parent46cd281cd3e9782343df5d94124ad669b1512d84 (diff)
[D3D12] Non-zeroed heaps on 2004
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/premake5.lua b/premake5.lua
index e0c8f8d92..622a4da2c 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -202,10 +202,10 @@ solution("xenia")
platforms({"Linux"})
elseif os.istarget("windows") then
platforms({"Windows"})
- -- Minimum version to support ID3D12GraphicsCommandList1 (for
- -- SetSamplePositions).
+ -- 10.0.15063.0: ID3D12GraphicsCommandList1::SetSamplePositions.
+ -- 10.0.19041.0: D3D12_HEAP_FLAG_CREATE_NOT_ZEROED.
filter("action:vs2017")
- systemversion("10.0.15063.0")
+ systemversion("10.0.19041.0")
filter("action:vs2019")
systemversion("10.0")
filter({})