-
via: #18 (comment)
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
What are .dot files?.dot files contain a visual representation of the current rendergraph. You can convert a .dot file into a PDF using the dot command line utility on a linux machine. There is also a very convenient plug-in for Visual Studio Code which allows you to preview a .dot file directly. When are .dot files generated?.dot files are generated for Debug applications by default as soon as the le_renderer detects a change in the Rendergraph. How disable .dot file generationIf you don't want to generate .dot files for a particular app you can add the following line to the app's
This should sit just above the line setting your application PROJECT_NAME. |
Beta Was this translation helpful? Give feedback.
-
Update: as of 0.7.0, dot files are generated whenever the associated LE_SETTING is > 0.
Whenever a .dot file is generated, the corresponding LE_SETTING is decremented by the backend. To tell the backend to create a .dot file, do this (for example as a response to a key press):
You can set |
Beta Was this translation helpful? Give feedback.
Update: as of 0.7.0, dot files are generated whenever the associated LE_SETTING is > 0.
LE_SETTING_GENERATE_QUEUE_SYNC_DOT_FILES
LE_SETTING_RENDERGRAPH_GENERATE_DOT_FILES
Whenever a .dot file is generated, the corresponding LE_SETTING is decremented by the backend.
To tell the backend to create a .dot file, do this (for example as a response to a key press):
You can set
LE_SETTING_GENERATE_QUEUE_SYNC_DOT_FILES
to10
if you want to cr…