gsdx: increase the number of texture in the pool

It could slightly increase the VRAM requirement but it will reduce texture
allocation/unallocation at start/end of frame.
This commit is contained in:
Gregory Hainaut 2016-04-24 12:06:16 +02:00
parent b4b878ac24
commit 8ec1461842
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ void GSDevice::AgePool()
{
m_frame++;
while(m_pool.size() > 20 && m_frame - m_pool.back()->last_frame_used > 10)
while(m_pool.size() > 40 && m_frame - m_pool.back()->last_frame_used > 10)
{
delete m_pool.back();