Home | History | Annotate | Download | only in libcopybit

Lines Matching refs:info

139                                       copyInfo& info)
147 int width = info.width;
148 int height = info.height;
155 src += info.src_stride;
156 dst += info.dst_stride;
160 src = (unsigned char*)(src_base + info.src_plane1_offset);
161 dst = (unsigned char*)(dst_base + info.dst_plane1_offset);
165 memcpy(dst, src, info.src_stride);
166 src += info.src_stride;
167 dst += info.dst_stride;
193 copyInfo info;
194 info.width = rhs->w;
195 info.height = rhs->h;
196 info.src_stride = ALIGN(info.width, 32);
197 info.dst_stride = ALIGN(info.width, 16);
201 info.src_plane1_offset = info.src_stride*info.height;
202 info.dst_plane1_offset = info.dst_stride*info.height;
206 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
207 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
215 ret = copy_source_to_destination(hnd->base, dst_hnd->base, info);
238 copyInfo info;
239 info.width = rhs->w;
240 info.height = rhs->h;
241 info.src_stride = ALIGN(hnd->width, 16);
242 info.dst_stride = ALIGN(info.width, 32);
246 info.src_plane1_offset = info.src_stride*info.height;
247 info.dst_plane1_offset = info.dst_stride*info.height;
251 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
252 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
260 ret = copy_source_to_destination(hnd->base, dst_hnd->base, info);