Cycles: add Metal device type to device_type_for_description

Add a `DEVICE_METAL` case to the enum-value-to-string mapping function.
This commit is contained in:
Sybren A. Stüvel
2021-12-07 17:47:35 +01:00
parent fee4b58627
commit a37dac0a88

View File

@@ -1093,6 +1093,8 @@ static const char *device_type_for_description(const DeviceType type)
return "Dummy";
case DEVICE_MULTI:
return "Multi";
case DEVICE_METAL:
return "Metal";
}
return "UNKNOWN";