We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c1919 commit 8999515Copy full SHA for 8999515
opengl/libagl/egl.cpp
@@ -485,13 +485,13 @@ void egl_window_surface_v2_t::copyBlt(
485
copybit_device_t* const copybit = blitengine;
486
if (copybit) {
487
copybit_image_t simg;
488
- simg.w = src->width;
+ simg.w = src->stride;
489
simg.h = src->height;
490
simg.format = src->format;
491
simg.handle = const_cast<native_handle_t*>(src->handle);
492
493
copybit_image_t dimg;
494
- dimg.w = dst->width;
+ dimg.w = dst->stride;
495
dimg.h = dst->height;
496
dimg.format = dst->format;
497
dimg.handle = const_cast<native_handle_t*>(dst->handle);
0 commit comments