mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
b4b878ac24
commit
8ec1461842
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue