[vdi] Skip null texture object in hipDestroyTextureObject.
- To match both CUDA and HCC runtime behavior. Change-Id: I072b006dd554e17f8341f391d33bf6224a125a7e
This commit is contained in:
@@ -312,7 +312,7 @@ hipError_t hipCreateTextureObject(hipTextureObject_t* pTexObject,
|
||||
|
||||
hipError_t ihipDestroyTextureObject(hipTextureObject_t texObject) {
|
||||
if (texObject == nullptr) {
|
||||
return hipErrorInvalidValue;
|
||||
return hipSuccess;
|
||||
}
|
||||
|
||||
const hipResourceType type = texObject->resDesc.resType;
|
||||
|
||||
Reference in New Issue
Block a user