Lines Matching defs:rgba
450 void *rgba = NULL;
503 * and avoid the final conversion/copy from the rgba buffer to the dst
507 rgba = dest;
510 if (rgba == NULL) { /* Allocate the RGBA buffer only once */
511 rgba = malloc(height * rgba_stride);
512 if (!rgba) {
520 _mesa_format_convert(rgba, rgba_format, rgba_stride,
526 _mesa_apply_rgba_transfer_ops(ctx, transferOps, width * height, rgba);
538 src = rgba;
565 free(rgba);