Bug 440169 - Painting with brushes on canvas slow and unresponsive compared to scratchpad in brush settings
Summary: Painting with brushes on canvas slow and unresponsive compared to scratchpad ...
Status: RESOLVED FIXED
Alias: None
Product: krita
Classification: Applications
Component: Brush Engine/Bristle (show other bugs)
Version: 5.0.0
Platform: Microsoft Windows Microsoft Windows
: NOR normal
Target Milestone: ---
Assignee: Krita Bugs
URL:
Keywords: efficiency-and-performance
Depends on:
Blocks:
 
Reported: 2021-07-22 22:48 UTC by Michał Staruch
Modified: 2022-06-28 11:23 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Krita v4.4.5, canvas vs scratchpad (comparison of quickly drawed rounded shapes) (211.24 KB, image/png)
2021-07-22 22:48 UTC, Michał Staruch
Details
Krita v4.4.8 system information (2.59 KB, text/plain)
2021-09-07 10:36 UTC, Michał Staruch
Details
Comparison: shape with all WM_MOUSEMOVE points painted (15.46 KB, image/png)
2021-09-07 16:39 UTC, Michał Staruch
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Michał Staruch 2021-07-22 22:48:00 UTC
Created attachment 140267 [details]
Krita v4.4.5, canvas vs scratchpad (comparison of quickly drawed rounded shapes)

SUMMARY
Painting on canvas is slow and unresponsive compared to painting on scratchpad in brush settings.

STEPS TO REPRODUCE
1. Create simplest possible harx 1px brush (disable all the flow etc. settings)
2. Try very quickly drawing a few rounded shapes
3. Enter brush setting and very quickly drawing similar shape on the scratchpad.

OBSERVED RESULT
1. Drawing on the scratchbad works as it should: fluid, very responsive, shapes are properly rounded exactly as mouse was moved - comparable experience to commercial products like Clip Paint Studio. Feels like 500 Hz, comparable to mouse input events rate.
2. Drawing on the canvas is absolutely painful. Sluggish, shapes are more square than round, doesn't feel responsive at all. Feels like 30 Hz.

I am attaching screenshot illustrating difference in the results.

EXPECTED RESULT
Drawing on the canvas working similarily smooth to drawing on the scratchpad in brush settings.

Without that whole drawing experience is just ruined - like half information from mouse is lost, rounded shapes are turned into squares, etc.

SOFTWARE/OS VERSIONS
Windows: Windows 10 Pro 64-bit 21H1 (19043.1110)
macOS: 
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 
KDE Frameworks Version: 
Qt Version: 

ADDITIONAL INFORMATION
CPU: i5-6600K
GPU: GTX 960 (driver 471.11)
RAM: 16 GB
I've tried both Direct3D and OpenGL modes - same results.
Comment 1 Dmitry Kazakov 2021-07-29 13:01:23 UTC
Hi, Michal!

What drawing tablet do you use for this test?
Comment 2 Michał Staruch 2021-07-29 21:39:33 UTC
(In reply to Dmitry Kazakov from comment #1)
> Hi, Michal!
> 
> What drawing tablet do you use for this test?

Just a mouse - I was simply comparing responsiveness and smoothness of a few painting applications using simple 1px hard pencil and no stabilizer.

Scratchpad in Krita works fine, but main canvas is... well, OK for a chess player, but completely unable to handle techniques like scribble drawing - for that you need to work in real-time, so it could feel like a real pencil.

Rendering graphics on canvas might be done at monitor refresh rate (usually 60-144 Hz, also depends on v-sync, tripple buffering, etc.), but processing input events should be done independently, at input device rate (typically 500-1000 Hz, for a standard mouse) and absolutely NOT dropped - that dropped intermediate mouse positions are probably root cause of shapes turning into squares, instead of being nicely curved.

It's just a wild guess from this side, but... maybe in case of painting on canvas rendering / v-sync interferes somehow with processing input events?
Comment 3 Halla Rempt 2021-09-07 09:31:12 UTC
Please:

* update to the latest release
* provide the information in help->system information for bug reports
* test with basic smoothing enabled: no smoothing means no smooting
Comment 4 Michał Staruch 2021-09-07 10:36:26 UTC
Created attachment 141357 [details]
Krita v4.4.8 system information
Comment 5 Michał Staruch 2021-09-07 10:55:18 UTC
Halla, if mouse works with 500 or 1000 Hz (provides positions per second), then what good software should do, in your opinion:
1) use all of those input events to be able to paint shapes exactly as user draws them,
2) work with display device resolution (usually 60 Hz) when handling input events, and then draw either square-ish looking shapes, or perform guess-work / interpolation / smoothing based on handling like 5-10% of input device events?

Smoothing is just workaround, not a proper solution, in my opinion - it's like taking pictures with 64x64 px resolution and upscaling it to 1024x1024 px. Not exactly the same as native 1024x1024 pictures.
Comment 6 Halla Rempt 2021-09-07 11:32:47 UTC
* The OS simply does not deliver events at that high rate to the application, it will always drop events.

* Krita is not limited to a display refresh framerate of 60 Hz, but tries to update as often as possible.
Comment 7 Michał Staruch 2021-09-07 15:33:46 UTC
Halla: I've just created simple Windows app. (slightly modifying Windows Desktop Application template coming with Visual Studio 2019 Community Edition) to count WM_MOUSEMOVE messages coming into main app window - and when I constantly moved the cursor over the app. window the event counter reached almost 10000 during 10 seconds. So it doesn't look like limitation of the OS to me.
Comment 8 Michał Staruch 2021-09-07 16:39:03 UTC
Created attachment 141366 [details]
Comparison: shape with all WM_MOUSEMOVE points painted

I've also added shape with all the WM_MOUSEMOVE points painted and counted, for comparison - drawn during about 1 second.

Point coordinates were gathered into int vectors when handling input messages (in about 1000 Hz rate), then painted (and vectors cleared) to canvas on every WM_PAINT (triggered by simple timer at about 60 Hz rate). I've pushed it here, if anyone wants to take a look at the sources (nothing fancy, just quickly coded illustration of the idea, based on Microsoft template): https://github.com/MichalStaruch/WindowsMouseReader
Comment 9 Halla Rempt 2022-06-28 11:23:48 UTC
For Krita 5, we reworked the canvas redrawing code and the canvas is now much more responsive.