Merge pull request #59 from h3xl3r/master

MSL: Add color attribute qualifiers to fragment function outputs
This commit is contained in:
Hans-Kristian Arntzen 2016-10-01 09:37:32 +02:00 коммит произвёл GitHub
Родитель 25c4467a10 8bdc4060e8
Коммит 48ca43c8e0
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -968,7 +968,8 @@ string CompilerMSL::member_attribute_qualifier(const SPIRType &type, uint32_t in
return "";
}
}
return "";
uint32_t locn = get_ordered_member_location(type.self, index);
return string(" [[color(") + convert_to_string(locn) + ")]]";
}
return "";