Example #1
0
 private int DrawContextGetHashCode(GeoCalcBound bound, List<GeoRasterStyle> styles, int transparency, HeightStyle heightStyle)
 {
     int num = (bound.GetHashCode() ^ transparency) ^ heightStyle.GetHashCode();
     foreach (GeoRasterStyle style in styles)
     {
         num ^= style.GetHashCode();
     }
     return num;
 }