Lines Matching defs:srl
1337 VkSubresourceLayout srl;
1338 VKSCR(GetImageSubresourceLayout)(screen->dev, obj->image, &isr, &srl);
1339 *value = srl.offset;
1354 VkSubresourceLayout srl;
1355 VKSCR(GetImageSubresourceLayout)(screen->dev, obj->image, &isr, &srl);
1357 *value = srl.depthPitch;
1359 *value = srl.arrayPitch;
1982 VkSubresourceLayout srl;
1983 VKSCR(GetImageSubresourceLayout)(screen->dev, res->obj->image, &isr, &srl);
1984 trans->base.b.stride = srl.rowPitch;
1986 trans->base.b.layer_stride = srl.depthPitch;
1988 trans->base.b.layer_stride = srl.arrayPitch;
1989 trans->offset = srl.offset;
1990 trans->depthPitch = srl.depthPitch;
1992 unsigned offset = srl.offset +
1993 box->z * srl.depthPitch +
1994 (box->y / desc->block.height) * srl.rowPitch +