Initial commit of ImageFilter shader presets

Clone source can choose a filter
This commit is contained in:
Bruno Herbelin
2022-05-01 22:24:59 +02:00
parent 77dc563219
commit 80469ead18
32 changed files with 1385 additions and 202 deletions

View File

@@ -339,5 +339,5 @@ std::string Resource::listDirectory()
bool Resource::hasPath(const std::string& path)
{
auto fs = cmrc::vmix::get_filesystem();
return fs.exists(path);
return !path.empty() && fs.exists(path);
}