P4 to Git Change 1732177 by gandryey@gera-w8 on 2019/01/17 18:08:26

SWDEV-174282 - [AMF] WIN10 Converter fails when scale YUY2 image with certain output width
	- When OCL creates an image view use the pitch value from the original surface

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gslbe/src/rt/GSLDevice.cpp#185 edit
This commit is contained in:
foreman
2019-01-17 18:33:10 -05:00
vanhempi aa3989dcd0
commit aab00a26bc
@@ -1007,6 +1007,10 @@ CALGSLDevice::resAllocView(gslMemObject res, gslResource3D size, size_t offset,
{
return 0; //offset doesn't match alignment requirements.
}
if (attribs.bytePitch == (uint64)-1)
{
attribs.bytePitch = resPitch * elementSize;
}
// alias has same location as the base resource.
attribs.type = res->getAttribs().type;