public boolean directDispatchTouch(MotionEvent m, Renderer target) {
   mRenderView.setTouchTarget(target);
   boolean res = super.dispatchTouchEvent(m);
   mRenderView.setTouchTarget(null);
   return res;
 }
 public void update() {
   mRenderView.invalidate();
 }