What is the purpose of the pixels dictionary member in the Outline examples? #1278
Answered
by
phoddie
kallistisoft
asked this question in
Getting started
-
I've looked everywhere in the documentation and can't find any description of the export default new ClockApplication({}, { pixels: 240 * 32 }); So... I have several questions about the Application dictionary object:
|
Beta Was this translation helpful? Give feedback.
Answered by
phoddie
Dec 28, 2023
Replies: 1 comment
-
In brief:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kallistisoft
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In brief:
pixels
property defines the number of pixels in the render buffer using by Poco. The default is 2 scan lines of pixels. More pixels improves rendering performance. Practically speaking, increasing it much beyond 32 scan lines generally doesn't make much difference however. The details depend on what your project draws, so some experimentation and watching the rendering frame rate is usually appropriate.commandListLength
is the space reserved (in bytes) for Piu drawing operations. These are high level commands. The default is 1024.displayListLength
is the space reserved (in bytes) for Poco display list operations. These are low level commands. One Piu drawing opera…