Print this page
Added gradle and cmake project

@@ -253,12 +253,16 @@
                              Composite comp, Region clip,
                              int srcx, int srcy, int dstx, int dsty,
                              int width, int height,
                              byte[] mask, int maskoff, int maskscan)
         {
+            if ((traceflags & TRACEPTIME) == 0) {
             tracePrimitive(target);
+            }
+            long time = System.nanoTime();
             target.MaskBlit(src, dst, comp, clip,
                             srcx, srcy, dstx, dsty, width, height,
                             mask, maskoff, maskscan);
+            tracePrimitiveTime(target, System.nanoTime() - time);
         }
     }
 }