Home | History | Annotate | Download | only in libcopybit

Lines Matching refs:info

142                                       copyInfo& info)
150 int width = info.width;
151 int height = info.height;
158 src += info.src_stride;
159 dst += info.dst_stride;
163 src = (unsigned char*)(src_base + info.src_plane1_offset);
164 dst = (unsigned char*)(dst_base + info.dst_plane1_offset);
168 memcpy(dst, src, info.src_stride);
169 src += info.src_stride;
170 dst += info.dst_stride;
196 copyInfo info;
197 info.width = rhs->w;
198 info.height = rhs->h;
199 info.src_stride = ALIGN(info.width, 32);
200 info.dst_stride = ALIGN(info.width, 16);
204 info.src_plane1_offset = info.src_stride*info.height;
205 info.dst_plane1_offset = info.dst_stride*info.height;
209 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
210 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
218 ret = copy_source_to_destination((uintptr_t) hnd->base, (uintptr_t) dst_hnd->base, info);
241 copyInfo info;
242 info.width = rhs->w;
243 info.height = rhs->h;
244 info.src_stride = ALIGN(hnd->width, 16);
245 info.dst_stride = ALIGN(info.width, 32);
249 info.src_plane1_offset = info.src_stride*info.height;
250 info.dst_plane1_offset = info.dst_stride*info.height;
254 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
255 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
263 ret = copy_source_to_destination((uintptr_t) hnd->base, (uintptr_t) dst_hnd->base, info);