Lines Matching refs:info
287 struct pipe_blit_info info = {};
289 info.src.resource = pre ? surface->base.texture : surface->rgba_texture;
290 info.dst.resource = pre ? surface->rgba_texture : surface->base.texture;
291 info.src.format = pre ? surface->base.texture->format : PIPE_FORMAT_R8G8B8A8_UNORM;
292 info.dst.format = pre ? PIPE_FORMAT_R8G8B8A8_UNORM : surface->base.texture->format;
293 info.src.level = info.dst.level = 0;
294 info.src.box.x = info.dst.box.x = 0;
295 info.src.box.y = info.dst.box.y = 0;
296 info.src.box.z = info.dst.box.z = 0;
297 info.src.box.width = info.dst.box.width = surface->base.width;
298 info.src.box.height = info.dst.box.height = surface->base.height;
299 info.src.box.depth = info.dst.box.depth = 0;
300 info.mask = PIPE_MASK_RGBA;
302 d3d12_blit(pctx, &info);