Lines Matching defs:access
526 void Image::uploadVolume(const tcu::ConstPixelBufferAccess& access,
537 upload(queue, allocator, layout, offset, access.getWidth(),
538 access.getHeight(), access.getDepth(), mipLevel, arrayElement, aspect, vk::VK_IMAGE_TYPE_3D,
539 access.getDataPtr());
543 uploadUsingBuffer(queue, allocator, layout, offset, access.getWidth(),
544 access.getHeight(), access.getDepth(), mipLevel, arrayElement, aspect, access.getDataPtr());
548 void Image::uploadSurface (const tcu::ConstPixelBufferAccess& access,
559 upload(queue, allocator, layout, offset, access.getWidth(),
560 access.getHeight(), access.getDepth(), mipLevel, arrayElement, aspect, vk::VK_IMAGE_TYPE_2D,
561 access.getDataPtr());
565 uploadUsingBuffer(queue, allocator, layout, offset, access.getWidth(),
566 access.getHeight(), access.getDepth(), mipLevel, arrayElement, aspect, access.getDataPtr());
570 void Image::uploadSurface1D (const tcu::ConstPixelBufferAccess& access,
581 upload(queue, allocator, layout, offset, access.getWidth(),
582 access.getHeight(), access.getDepth(), mipLevel, arrayElement, aspect, vk::VK_IMAGE_TYPE_1D,
583 access.getDataPtr());
587 uploadUsingBuffer(queue, allocator, layout, offset, access.getWidth(),
588 access.getHeight(), access.getDepth(), mipLevel, arrayElement, aspect, access.getDataPtr());
592 void Image::uploadSurfaceLinear (const tcu::ConstPixelBufferAccess& access,
601 uploadLinear(offset, width, height, depth, mipLevel, arrayElement, aspect, access.getDataPtr());