Lines Matching defs:blit

1177                      const struct pipe_blit_info *blit)
1181 tmp = VIRGL_CMD_BLIT_S0_MASK(blit->mask) |
1182 VIRGL_CMD_BLIT_S0_FILTER(blit->filter) |
1183 VIRGL_CMD_BLIT_S0_SCISSOR_ENABLE(blit->scissor_enable) |
1184 VIRGL_CMD_BLIT_S0_RENDER_CONDITION_ENABLE(blit->render_condition_enable) |
1185 VIRGL_CMD_BLIT_S0_ALPHA_BLEND(blit->alpha_blend);
1187 virgl_encoder_write_dword(ctx->cbuf, (blit->scissor.minx | blit->scissor.miny << 16));
1188 virgl_encoder_write_dword(ctx->cbuf, (blit->scissor.maxx | blit->scissor.maxy << 16));
1191 virgl_encoder_write_dword(ctx->cbuf, blit->dst.level);
1192 virgl_encoder_write_dword(ctx->cbuf, pipe_to_virgl_format(blit->dst.format));
1193 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.x);
1194 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.y);
1195 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.z);
1196 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.width);
1197 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.height);
1198 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.depth);
1201 virgl_encoder_write_dword(ctx->cbuf, blit->src.level);
1202 virgl_encoder_write_dword(ctx->cbuf, pipe_to_virgl_format(blit->src.format));
1203 virgl_encoder_write_dword(ctx->cbuf, blit->src.box.x);
1204 virgl_encoder_write_dword(ctx->cbuf, blit->src.box.y);
1205 virgl_encoder_write_dword(ctx->cbuf, blit->src.box.z);
1206 virgl_encoder_write_dword(ctx->cbuf, blit->src.box.width);
1207 virgl_encoder_write_dword(ctx->cbuf, blit->src.box.height);
1208 virgl_encoder_write_dword(ctx->cbuf, blit->src.box.depth);