Home | History | Annotate | Download | only in radeonsi

Lines Matching full:orig

269 				   struct texture_orig_info *orig)
277 orig->format = tex->format;
278 orig->width0 = tex->width0;
279 orig->height0 = tex->height0;
280 orig->npix0_x = rtex->surface.level[0].npix_x;
281 orig->npix0_y = rtex->surface.level[0].npix_y;
282 orig->npix_x = rtex->surface.level[level].npix_x;
283 orig->npix_y = rtex->surface.level[level].npix_y;
290 new_width = util_format_get_nblocksx(tex->format, orig->width0);
291 new_height = util_format_get_nblocksy(tex->format, orig->height0);
296 rtex->surface.level[0].npix_x = util_format_get_nblocksx(orig->format, orig->npix0_x);
297 rtex->surface.level[0].npix_y = util_format_get_nblocksy(orig->format, orig->npix0_y);
298 rtex->surface.level[level].npix_x = util_format_get_nblocksx(orig->format, orig->npix_x);
299 rtex->surface.level[level].npix_y = util_format_get_nblocksy(orig->format, orig->npix_y);
304 struct texture_orig_info *orig)
309 tex->format = orig->format;
310 tex->width0 = orig->width0;
311 tex->height0 = orig->height0;
312 rtex->surface.level[0].npix_x = orig->npix0_x;
313 rtex->surface.level[0].npix_y = orig->npix0_y;
314 rtex->surface.level[level].npix_x = orig->npix_x;
315 rtex->surface.level[level].npix_y = orig->npix_y;