Home | History | Annotate | Download | only in exynos

Lines Matching defs:images

113 	struct g2d_image *images;
119 images = calloc(batch, sizeof(struct g2d_image));
120 if (images == NULL) {
121 fprintf(stderr, "error: failed to allocate G2D images.\n");
126 images[i].width = buf_width;
127 images[i].height = buf_height;
128 images[i].stride = buf_width * 4;
129 images[i].color_mode = G2D_COLOR_FMT_ARGB8888 | G2D_ORDER_AXRGB;
130 images[i].buf_type = G2D_IMGBUF_GEM;
131 images[i].bo[0] = bo->handle;
163 images[j].color = rand();
167 ret = g2d_solid_fill(ctx, &images[j], x, y, w, h);
199 free(images);