Fix overlay gpu memory leak in some games.

This commit is contained in:
Mr_Goldberg 2022-08-11 20:52:26 -04:00
parent 3abc5976e0
commit b72b4da8fb
No known key found for this signature in database
GPG Key ID: 8597D87419DEF278
2 changed files with 2 additions and 2 deletions

View File

@ -346,7 +346,7 @@ static void ImGui_ImplDX10_CreateFontsTexture()
desc.MipLODBias = 0.f;
desc.ComparisonFunc = D3D10_COMPARISON_ALWAYS;
desc.MinLOD = 0.f;
desc.MaxLOD = 0.f;
desc.MaxLOD = D3D10_FLOAT32_MAX;
bd->pd3dDevice->CreateSamplerState(&desc, &bd->pFontSampler);
}
}

View File

@ -358,7 +358,7 @@ static void ImGui_ImplDX11_CreateFontsTexture()
desc.MipLODBias = 0.f;
desc.ComparisonFunc = D3D11_COMPARISON_ALWAYS;
desc.MinLOD = 0.f;
desc.MaxLOD = 0.f;
desc.MaxLOD = D3D11_FLOAT32_MAX;
bd->pd3dDevice->CreateSamplerState(&desc, &bd->pFontSampler);
}
}