[Metal] Update bindings to Xcode 10.2 Beta 1 (#5500)

This commit is contained in:
Alex Soto 2019-01-28 16:26:03 -05:00 коммит произвёл GitHub
Родитель 626a7c188a
Коммит 7ec1140a38
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 15 добавлений и 1 удалений

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

@ -324,6 +324,20 @@ namespace Metal {
public partial interface IMTLTexture {
}
#endif
#endif // COREBUILD
#if MONOMAC
[NoiOS, NoTV, NoWatch, Mac (10,14, onlyOn64: true)]
public struct MTLIndirectCommandBufferExecutionRange
{
public uint Location;
public uint Length;
public MTLIndirectCommandBufferExecutionRange (uint location, uint length)
{
Location = location;
Length = length;
}
}
#endif // MONOMAC
}
#endif