gsdx-ogl: optimize GPU->CPU memory transfer size

Might help for snow engine game (a little)

Previous code use to read the full texture whereas now it will be limited
to the size of the useful data.
This commit is contained in:
Gregory Hainaut
2016-03-18 20:24:42 +01:00
parent 490cb757bf
commit da741e294e
2 changed files with 8 additions and 2 deletions
+2 -1
View File
@@ -83,8 +83,9 @@ void GSTextureCacheOGL::Read(Target* t, const GSVector4i& r)
if(GSTexture* offscreen = m_renderer->m_dev->CopyOffscreen(t->m_texture, src, r.width(), r.height(), fmt, ps_shader))
{
GSTexture::GSMap m;
GSVector4i r_offscreen(0, 0, r.width(), r.height());
if(offscreen->Map(m))
if(offscreen->Map(m, &r_offscreen))
{
// TODO: block level write