mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 21:47:23 +00:00
[common] framebuffer: fix copy when source and dest pitch differs
We used to increment the source buffer index by width * bpp, not by pitch.
This is incorrect and the root cause behind #670.
This is a regression that appeared in 196050bd23
.
This commit is contained in:
parent
2ea84cd07e
commit
aff3bff8b0
@ -99,7 +99,7 @@ bool framebuffer_read(const FrameBuffer * frame, void * restrict dst,
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
memcpy(d, frame->data + rp, dstpitch);
|
memcpy(d, frame->data + rp, dstpitch);
|
||||||
rp += linewidth;
|
rp += pitch;
|
||||||
d += dstpitch;
|
d += dstpitch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user