P4 to Git Change 2005676 by kjayapra@0_HIPWS_LNX1_ROCM on 2019/09/27 15:33:19

SWDEV-145570 - Accomadating Texture Header changes.

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/hip/hip_texture.cpp#18 edit
This commit is contained in:
foreman
2019-09-27 15:39:51 -04:00
rodzic a00020106d
commit 87e901fcdc
+3 -3
Wyświetl plik
@@ -585,12 +585,12 @@ hipError_t hipTexRefSetAddressMode(textureReference* tex, int dim, hipTextureAdd
HIP_RETURN(hipSuccess);
}
hipError_t hipTexRefGetArray(hipArray* array, textureReference tex) {
hipError_t hipTexRefGetArray(hipArray_t* array, textureReference tex) {
HIP_INIT_API(array, &tex);
hip::TextureObject* texture = nullptr;
if (array == nullptr) {
if ((array == nullptr) || (*array == nullptr)) {
HIP_RETURN(hipErrorInvalidImage);
}
@@ -603,7 +603,7 @@ hipError_t hipTexRefGetArray(hipArray* array, textureReference tex) {
HIP_RETURN(hipErrorUnknown);
}
*array = *(texture->resDesc.res.array.array);
**array = *(texture->resDesc.res.array.array);
HIP_RETURN(hipSuccess);
}