SWDEV-439637 - Added hipTexRefGetArray hipTexRefGetBorderColor(github id- #3382)

Change-Id: I8e7ad7e5ffd4d78293739d5eee94d9e6f5079c2d
This commit is contained in:
Anusha GodavarthySurya
2024-01-03 14:46:03 +00:00
کامیت شده توسط Anusha Godavarthy Surya
والد 310b089cbe
کامیت e2dcda002d
@@ -6053,6 +6053,34 @@ DEPRECATED(DEPRECATED_MSG)
hipError_t hipGetTextureReference(
const textureReference** texref,
const void* symbol);
/**
* @brief Gets the border color used by a texture reference.
*
* @param [out] pBorderColor Returned Type and Value of RGBA color.
* @param [in] texRef Texture reference.
*
* @returns #hipSuccess, #hipErrorInvalidValue
* @warning This API is deprecated.
*
*/
DEPRECATED(DEPRECATED_MSG)
hipError_t hipTexRefGetBorderColor(float* pBorderColor, const textureReference* texRef);
/**
* @brief Gets the array bound to a texture reference.
*
* @param [in] pArray Returned array.
* @param [in] texRef texture reference.
*
* @returns #hipSuccess, #hipErrorInvalidValue
* @warning This API is deprecated.
*
*/
DEPRECATED(DEPRECATED_MSG)
hipError_t hipTexRefGetArray(hipArray_t* pArray, const textureReference* texRef);
/**
* @brief Sets address mode for a texture reference.
*