public void OnDrawFrame(IGL10 gl)
 {
     lock (this) {
         if (_baseMapView != null)
         {
             _baseMapView.OnDrawFrame();
         }
     }
 }
Пример #2
0
 public void OnDrawFrame(IGL10 gl)
 {
     lock (this) {
         BaseMapView baseMapView = null;
         _baseMapView.TryGetTarget(out baseMapView);
         if (baseMapView != null)
         {
             baseMapView.OnDrawFrame();
         }
     }
 }