You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.4.4
Restrictions
The following C++14 features are not available in Metal (section numbers in this list refer to the
C++14 Specification):
...
• new and delete operators (sections 5.3.4 and 5.3.5)
...
The text was updated successfully, but these errors were encountered:
Shader with a variable called
new
will fail when running with Metal because Metal is based on C++14 andnew
is a keyword even though it is restricted.See https://developer.apple.com/metal/Metal-Shading-Language-Specification.pdf
The text was updated successfully, but these errors were encountered: