P4 to Git Change 1346120 by gandryey@gera-w8 on 2016/11/25 13:00:01

SWDEV-86035 - Add PAL backend to OpenCL
	- Fix a regression after LC path integration. sampler, image and queue pointers have uint64_t size always.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.cpp#26 edit
Dieser Commit ist enthalten in:
foreman
2016-11-25 13:04:36 -05:00
Ursprung 38be7dfff4
Commit 41eceed8f1
+1 -1
Datei anzeigen
@@ -248,7 +248,7 @@ GetHSAILArgSize(const aclArgData *argInfo)
case ARG_TYPE_IMAGE:
case ARG_TYPE_SAMPLER:
case ARG_TYPE_QUEUE:
return sizeof(void*);
return sizeof(uint64_t);
default:
return -1;
}