🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Advertisement

Latest screenflicker Activity

DX12::setResourceData does the following:

Void* mappedData = nullptr;
D3D12_RANGE emptyRange{};	// Empty range to indicate we are not reading
if (FAILED(resource->Map(0, &emptyRange, (Void**)&mappedData))) return false;
memcpy(mappedData, data, (size_t)numBytes);
resource->Unmap(0, nul…
3,876 views
Advertisement
Advertisement
Advertisement