1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-04 16:24:29 +01:00

[d3d9] Implement PreLoad for buffers + textures

This commit is contained in:
Joshua Ashton 2020-06-06 20:10:22 +01:00 committed by Joshie
parent 86c53bb9e6
commit b1bd3597a4
10 changed files with 66 additions and 15 deletions

View File

@ -33,6 +33,10 @@ namespace dxvk {
return m_buffer.Unlock();
}
void STDMETHODCALLTYPE PreLoad() final {
m_buffer.PreLoad();
}
D3D9CommonBuffer* GetCommonBuffer() {
return &m_buffer;
}

View File

@ -50,6 +50,16 @@ namespace dxvk {
}
void D3D9CommonBuffer::PreLoad() {
if (IsPoolManaged(m_desc.Pool)) {
auto lock = m_parent->LockDevice();
if (NeedsUpload())
m_parent->FlushBuffer(this);
}
}
Rc<DxvkBuffer> D3D9CommonBuffer::CreateBuffer() const {
DxvkBufferCreateInfo info;
info.size = m_desc.Size;

View File

@ -163,6 +163,8 @@ namespace dxvk {
return locked;
}
void PreLoad();
private:
Rc<DxvkBuffer> CreateBuffer() const;

View File

@ -465,6 +465,27 @@ namespace dxvk {
}
void D3D9CommonTexture::PreLoadAll() {
if (IsManaged()) {
auto lock = m_device->LockDevice();
m_device->UploadManagedTexture(this);
}
}
void D3D9CommonTexture::PreLoadSubresource(UINT Subresource) {
if (IsManaged()) {
auto lock = m_device->LockDevice();
if (GetNeedsUpload(Subresource)) {
m_device->FlushImage(this, Subresource);
SetNeedsUpload(Subresource, false);
}
}
}
void D3D9CommonTexture::CreateSampleView(UINT Lod) {
// This will be a no-op for SYSTEMMEM types given we
// don't expose the cap to allow texturing with them.

View File

@ -355,6 +355,7 @@ namespace dxvk {
bool GetUploading(UINT Subresource) const { return m_uploading.get(Subresource); }
void SetNeedsUpload(UINT Subresource, bool upload) { m_needsUpload.set(Subresource, upload); }
bool GetNeedsUpload(UINT Subresource) const { return m_needsUpload.get(Subresource); }
bool NeedsAnyUpload() { return m_needsUpload.any(); }
void ClearNeedsUpload() { return m_needsUpload.clearAll(); }
@ -366,6 +367,9 @@ namespace dxvk {
void SetMipFilter(D3DTEXTUREFILTERTYPE filter) { m_mipFilter = filter; }
D3DTEXTUREFILTERTYPE GetMipFilter() const { return m_mipFilter; }
void PreLoadAll();
void PreLoadSubresource(UINT Subresource);
private:
D3D9DeviceEx* m_device;

View File

@ -4120,6 +4120,7 @@ namespace dxvk {
(!atiHack) ? formatInfo : nullptr,
pBox);
uint8_t* data = reinterpret_cast<uint8_t*>(physSlice.mapPtr);
data += offset;
pLockedBox->pBits = data;
@ -4886,22 +4887,24 @@ namespace dxvk {
}
void D3D9DeviceEx::UploadManagedTextures(uint32_t mask) {
for (uint32_t tex = mask; tex; tex &= tex - 1) {
// Guaranteed to not be nullptr...
auto texInfo = GetCommonTexture(m_state.textures[bit::tzcnt(tex)]);
for (uint32_t i = 0; i < texInfo->GetUploadBitmask().dwordCount(); i++) {
for (uint32_t subresources = texInfo->GetUploadBitmask().dword(i); subresources; subresources &= subresources - 1) {
void D3D9DeviceEx::UploadManagedTexture(D3D9CommonTexture* pResource) {
for (uint32_t i = 0; i < pResource->GetUploadBitmask().dwordCount(); i++) {
for (uint32_t subresources = pResource->GetUploadBitmask().dword(i); subresources; subresources &= subresources - 1) {
uint32_t subresource = i * 32 + bit::tzcnt(subresources);
this->FlushImage(texInfo, subresource);
this->FlushImage(pResource, subresource);
}
}
texInfo->ClearNeedsUpload();
pResource->ClearNeedsUpload();
}
void D3D9DeviceEx::UploadManagedTextures(uint32_t mask) {
// Guaranteed to not be nullptr...
for (uint32_t tex = mask; tex; tex &= tex - 1)
UploadManagedTexture(GetCommonTexture(m_state.textures[bit::tzcnt(tex)]));
m_activeTexturesToUpload &= ~mask;
}

View File

@ -748,6 +748,8 @@ namespace dxvk {
void MarkRenderHazards();
void UploadManagedTexture(D3D9CommonTexture* pResource);
void UploadManagedTextures(uint32_t mask);
void GenerateTextureMips(uint32_t mask);

View File

@ -70,9 +70,6 @@ namespace dxvk {
return m_priority;
}
void STDMETHODCALLTYPE PreLoad() {
}
protected:

View File

@ -52,6 +52,10 @@ namespace dxvk {
return this->GetDevice()->QueryInterface(riid, ppContainer);
}
void STDMETHODCALLTYPE PreLoad() {
m_texture->PreLoadSubresource(GetSubresource());
}
D3D9CommonTexture* GetCommonTexture() {
return m_texture;
}

View File

@ -93,6 +93,10 @@ namespace dxvk {
this->m_parent->EmitGenerateMips(&m_texture);
}
void STDMETHODCALLTYPE PreLoad() final {
m_texture.PreLoadAll();
}
D3D9CommonTexture* GetCommonTexture() {
return &m_texture;
}