Lines Matching defs:output
47 struct vic_image *output;
87 &output);
89 fprintf(stderr, "failed to create output image: %d\n", err);
93 printf("image: %zu bytes\n", output->size);
95 err = drm_tegra_bo_map(output->bo, &ptr);
97 fprintf(stderr, "failed to map output image: %d\n", err);
101 memset(ptr, 0xff, output->size);
102 drm_tegra_bo_unmap(output->bo);
104 printf("output: %ux%u\n", output->width, output->height);
105 vic_image_dump(output, stdout);
125 err = vic_clear(vic, output, 1023, 0, 0, 1023);
131 err = vic->ops->execute(vic, pushbuf, &pb, output, NULL, 0);
162 printf("output: %ux%u\n", output->width, output->height);
163 vic_image_dump(output, stdout);
166 vic_image_free(output);