Is there a processing tool profiler available?

My project is encoded in Processing , is there a profiler available for processing? If not, how to check the performance of the processing program?

Thanks and best regards

+6
source share
1 answer

I am using VisualVM to view my processing applications. Just go to the appropriate process in VisualVM while the sketch is running. Processing is mostly Java, so most Java tools will run on your processing applications.

EDIT: Processing.js sketches can also be profiled using the Developer Tools extensions in browsers, just run the processor profile.

+2
source

Source: https://habr.com/ru/post/890344/


All Articles