Hiding Shading Artifacts with AppBorder Plugin
The AppBorder plugin is used to hide the SSAO/SSDO shading artifacts at the screen edges.
The plugin performs the following:
- Recalculates the size of the image displayed in the current viewport as follows:
image_width = window_width + border × 2image_height = window_height + border × 2Here border is a size of the border specified on the application start-up or set via the engine.border.setBorder() function.
- Renders the image of the recalculated size into the internal buffer.
- Crops the image size to the size of the window (window_width and window_height) with the border offset.
The following pictures demonstrate how the AppBorder plugin can improve quality of the SSAO effect at the screen edges. Notice the shading difference at the bottom of each picture: on the right picture the SSAO effect is more correct.
Border = 0
|
Border = 50
|
See Also
- engine.border Functions
Launching AppBorder
To use this plugin, specify the extern_plugin command-line option together with the required start-up options on the application start-up, for example:
main_x86d -data_path "../" -extern_plugin AppBorder
AppBorder Options
The following CLI options can be specified on the application start-up:
- border - size of the border.
Large values should be set carefully.
main_x86d -data_path "../" -extern_plugin AppBorder -border 50
Last update: 2017-07-03
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)