Exemplo n.º 1
0
        public ShaderType FindOrCreatePointerType(TypeKey key, TypeName typeName, StorageClass storageClass)
        {
            var baseType = mCurrentLibrary.FindType(key);

            return(FindOrCreatePointerType(baseType, storageClass));
        }
Exemplo n.º 2
0
 //---------------------------------------------------------------Types
 public bool AddType(TypeKey key, ShaderType shaderType)
 {
     return(mTypeMap.TryAdd(key, shaderType));
 }
Exemplo n.º 3
0
 public ShaderType FindType(TypeKey typeKey)
 {
     return(mCurrentLibrary.FindType(typeKey));
 }