Lines Matching defs:dump
32 * To dump the framebuffers of an application after each render pass, all you
41 * 7) Call anv_dump_finish() to complete the dump and write files
264 struct dump_image dump;
265 dump_image_init(device, &dump, width, height, filename);
293 dump_image_do_blit(device, &dump, anv_cmd_buffer_from_handle(cmd), image,
321 dump_image_write_to_ppm(device, &dump);
322 dump_image_finish(device, &dump);
358 list_for_each_entry(struct dump_image, dump, &dump_list, link) {
359 dump_image_write_to_ppm(dump_device, dump);
360 dump_image_finish(dump_device, dump);
403 struct dump_image *dump = ralloc(dump_ctx, struct dump_image);
405 dump_image_init(cmd_buffer->device, dump, width, height, filename);
406 dump_image_do_blit(cmd_buffer->device, dump, cmd_buffer, image,
409 list_addtail(&dump->link, &dump_list);