SWDEV-477699 - Add mapping to cuTexRefGetBorderColor and cuTexRefSetBorderColor

Change-Id: Id9e6874c5d075ddfcdb617aa7294bc40d2277a44
Этот коммит содержится в:
Marko Arandjelovic
2024-08-06 10:32:31 +02:00
коммит произвёл Marko Arandjelovic
родитель f9d31c596e
Коммит 4d0e2fe224
+8
Просмотреть файл
@@ -3604,6 +3604,14 @@ __HIP_DEPRECATED inline static hipError_t hipTexRefSetFilterMode(hipTexRef hTexR
return hipCUResultTohipError(cuTexRefSetFilterMode(hTexRef,fm));
}
__HIP_DEPRECATED inline static hipError_t hipTexRefGetBorderColor(float* pBorderColor, hipTexRef hTexRef){
return hipCUResultTohipError(cuTexRefGetBorderColor(pBorderColor, hTexRef));
}
__HIP_DEPRECATED inline static hipError_t hipTexRefSetBorderColor(hipTexRef hTexRef, float* pBorderColor){
return hipCUResultTohipError(cuTexRefSetBorderColor(hTexRef, pBorderColor));
}
inline static hipError_t hipTexRefGetAddress(hipDeviceptr_t* dev_ptr, hipTexRef texRef) {
return hipCUResultTohipError(cuTexRefGetAddress(dev_ptr, texRef));
}