SWDEV-541623 - cuda parity hipTexObjectCreate when Array is null (#734)
This commit is contained in:
zatwierdzone przez
GitHub
rodzic
be73d024e2
commit
54e592beec
@@ -123,7 +123,10 @@ hipError_t ihipCreateTextureObject(hipTextureObject_t* pTexObject,
|
||||
LogInfo("Mipmap not supported on the device");
|
||||
return hipErrorNotSupported;
|
||||
}
|
||||
if (pResDesc->res.mipmap.mipmap == nullptr || pTexDesc->normalizedCoords == 0) {
|
||||
if (pResDesc->res.mipmap.mipmap == nullptr) {
|
||||
return hipErrorInvalidValue;
|
||||
}
|
||||
if (pTexDesc->normalizedCoords == 0) {
|
||||
return hipErrorInvalidChannelDescriptor;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user