Fixed host allocated globals address lookup for host usage

Fixed texture driver APIs failure
This commit is contained in:
Rahul Garg
2018-01-30 18:06:31 +05:30
parent 84e3333c5b
commit 24ab820a11
4 ha cambiato i file con 8 aggiunte e 11 eliminazioni
+1 -2
Vedi File
@@ -568,7 +568,6 @@ hipError_t hipModuleGetTexRef(
const auto it = globals().find(name);
if (it == globals().end()) return ihipLogStatus(hipErrorInvalidValue);
*texRef = static_cast<textureReference*>(it->second.get());
*texRef = reinterpret_cast<textureReference*>(it->second);
return ihipLogStatus(hipSuccess);
}