diff options
| author | 2010-06-21 11:23:45 -0700 | |
|---|---|---|
| committer | 2010-06-21 11:23:45 -0700 | |
| commit | ecfae4c86a094c27ea004a4d759e4578614078a0 (patch) | |
| tree | cdd862826322caeefb9cd21816ef5e9aba4c244c /opengl/libagl/egl.cpp | |
| parent | c74dafe038c57550a838c0da056d1242cffdb5e9 (diff) | |
| parent | 32df01f7750b265d78369d34df90e79d21a76504 (diff) | |
merge from froyo-plus-aosp
Change-Id: I36dd4460cae6e3212d724e70ff1091cb791670cd
Diffstat (limited to 'opengl/libagl/egl.cpp')
| -rw-r--r-- | opengl/libagl/egl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opengl/libagl/egl.cpp b/opengl/libagl/egl.cpp index 7cb01d0e1a..a7a37f8a24 100644 --- a/opengl/libagl/egl.cpp +++ b/opengl/libagl/egl.cpp @@ -485,13 +485,13 @@ void egl_window_surface_v2_t::copyBlt( copybit_device_t* const copybit = blitengine; if (copybit) { copybit_image_t simg; - simg.w = src->width; + simg.w = src->stride; simg.h = src->height; simg.format = src->format; simg.handle = const_cast<native_handle_t*>(src->handle); copybit_image_t dimg; - dimg.w = dst->width; + dimg.w = dst->stride; dimg.h = dst->height; dimg.format = dst->format; dimg.handle = const_cast<native_handle_t*>(dst->handle); |