SWDEV-439637 - Fix undefined symbol error hipTexRefGetArray & hipTexRefGetBorderColor (github id- #3382)

Change-Id: Iae1956779e84759f23011151b60a01cef0d0ef32


[ROCm/clr commit: 5303cd2740]
This commit is contained in:
Anusha GodavarthySurya
2024-01-03 14:43:45 +00:00
committed by Anusha Godavarthy Surya
parent b97b245b0a
commit 78aee3d79f
3 changed files with 16 additions and 1 deletions
@@ -1719,3 +1719,9 @@ extern "C" int hipGetStreamDeviceId(hipStream_t stream) {
hipError_t hipExtGetLastError() {
return hip::GetHipDispatchTable()->hipExtGetLastError_fn();
}
hipError_t hipTexRefGetBorderColor(float* pBorderColor, const textureReference* texRef) {
return hip::GetHipDispatchTable()->hipTexRefGetBorderColor_fn(pBorderColor, texRef);
}
hipError_t hipTexRefGetArray(hipArray_t* pArray, const textureReference* texRef) {
return hip::GetHipDispatchTable()->hipTexRefGetArray_fn(pArray, texRef);
}