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.
Hi, Michal! What drawing tablet do you use for this test?
(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?
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
Created attachment 141357 [details] Krita v4.4.8 system information
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.
* 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.
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.
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
For Krita 5, we reworked the canvas redrawing code and the canvas is now much more responsive.