ShaderBuilder: Fix compilation error due to recent changes.

Added CustomData_get_layer to stub.
This commit is contained in:
Jeroen Bakker
2022-09-06 08:18:04 +02:00
parent 32d19f7317
commit 077ba5ac38

View File

@@ -232,6 +232,11 @@ void *CustomData_get_layer_named(const struct CustomData *UNUSED(data),
return nullptr;
}
void *CustomData_get_layer(const struct CustomData *UNUSED(data), int UNUSED(type))
{
return nullptr;
}
/** \} */
/* -------------------------------------------------------------------- */