mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-04 11:57:51 -06:00
d3d12: Fix for Intel HD4600
This commit is contained in:
parent
cb14697aa0
commit
e88d45b1bf
@ -105,6 +105,7 @@ void D3D12GSRender::ResourceStorage::Init(ID3D12Device *device)
|
||||
D3D12_HEAP_DESC heapDescription = {};
|
||||
heapDescription.SizeInBytes = 256 * 256 * 256 * 16;
|
||||
heapDescription.Properties.Type = D3D12_HEAP_TYPE_UPLOAD;
|
||||
heapDescription.Flags = D3D12_HEAP_FLAG_ALLOW_ONLY_BUFFERS;
|
||||
check(device->CreateHeap(&heapDescription, IID_PPV_ARGS(&m_uploadTextureHeap)));
|
||||
|
||||
heapDescription.Properties.Type = D3D12_HEAP_TYPE_DEFAULT;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user