public static bool TryLoadFromTexture(CommandList commandList, Texture texture, out HeightDataSource data)
 {
     if (texture?.Width > 0)
     {
         data = new HeightDataSource(texture.GetDataAsImage(commandList).PixelBuffer[0]);
         return(true);
     }
     else
     {
         data = default;
         return(false);
     }
 }
 protected bool TryGetHeightMapImageData(CommandList commandList, out HeightDataSource data)
 {
     if (HeightMap?.Width > 0)
     {
         data = new HeightDataSource(HeightMap.GetDataAsImage(commandList).PixelBuffer[0]);
         return(true);
     }
     else
     {
         data = default;
         return(false);
     }
 }
Exemplo n.º 3
0
 public GeometryBuilder(HeightDataSource data)
 {
     heightData = data;
 }