SWDEV-478206 - Fix hipTexRefSetArray

Change-Id: I6bd6ce60163d4f79001fce75e40ef46f1fcb7c3f
Этот коммит содержится в:
Marko Arandjelovic
2024-08-08 12:49:51 +02:00
родитель 3bdbc1eaf3
Коммит 224334e1d2
+5
Просмотреть файл
@@ -1004,6 +1004,11 @@ hipError_t hipTexRefSetArray(textureReference* texRef,
HIP_RETURN(err);
}
// If flag = HIP_TRSA_OVERRIDE_FORMAT,
// Override the texref format with a format inferred from the array
texRef->format = array->Format;
texRef->numChannels = array->NumChannels;
hipResourceDesc resDesc = {};
resDesc.resType = hipResourceTypeArray;
resDesc.res.array.array = const_cast<hipArray_t>(array);