SWDEV-390626 - Support surface Apis

Change-Id: I1691b82d597bfd722d562778f919ebf8ca530e90
This commit is contained in:
taosang2
2023-03-24 15:33:50 -04:00
committed by Maneesh Gupta
parent 1e88d2c52f
commit 53742adc08
3 changed files with 11 additions and 12 deletions
+4
View File
@@ -44,6 +44,10 @@ hipError_t ihipCreateSurfaceObject(hipSurfaceObject_t* pSurfObject,
const hipResourceDesc* pResDesc) {
amd::Device* device = hip::getCurrentDevice()->devices()[0];
const device::Info& info = device->info();
if (!info.imageSupport_) {
LogPrintfError("Texture not supported on the device %s", info.name_);
return hipErrorNotSupported;
}
// Validate input params
if (pSurfObject == nullptr || pResDesc == nullptr) {