Graphics renderers supported by Carmenta Engine drawables
This section describes the various graphics renderers supported by Carmenta Engine, i.e. the graphics backends that drawables can use to actually draw something onto a window or bitmap. The renderer is selected when a drawable is created.
The different backends produce similar or identical output in most cases, so switching from one to another shouldn't make much difference in rendering quality. However, the backends may differ significantly in performance; depending on the situation, selecting a different renderer may have a great impact on the performance of an application.
There are three different renderers available: OpenGL, DirectX and a software implementation.
OpenGL
This is the default renderer, using the OpenGL API, www.opengl.org. The GlobeView and the TerrainWarningOperator components requires OpenGL version 3.0 or later. The PlotLayer component requires OpenGL version 1.5 or later. All other components require only version 1.1, and should work well even over Remote Desktop sessions.
With most graphics cards and drivers, OpenGL is hardware accelerated, giving very good rendering performance, while at the same time offloading the CPU. For example, rotation of the View or loading maps using a background thread using the TileLayer are both much more effective with OpenGL than if they had been used with Software.
One potential problem with this renderer is that it requires a 3D accelerated graphics card, capable of properly supporting the OpenGL API. Often, updated drivers from the graphics card vendor need to be downloaded and installed on the machine.
You cannot use the OpenGL renderer with the Windows Presentation Foundation (WPF) MapControl. If you want to use the OpenGL renderer in a WPF application you must do it by hosting the Windows Forms MapControl in the application using the WindowsFormsHost control (part of the Microsoft .NET Framework).
On Linux, the OpenGL renderer can be configured to use Open GL ES version 3.x, instead of desktop OpenGL, by setting the environment variable CARMENTA_ENGINE_OPENGL_USE_ES to 1.
On Linux/ARM, the OpenGL renderer uses OpenGL ES version 3.x by default and can be configured to use desktop OpenGL instead by setting the environment variable CARMENTA_ENGINE_OPENGL_USE_ES to 0.
In WSL2, the OpenGL renderer uses the Mesa OpenGL over DirectX driver which historically has shown some problems when rendering Carmenta Engine. If you see rendering artifacts when using WSL2, set the environment variable GALLIUM_DRIVER to llvmpipe to fall back to software rasterization.
When using the Qt framework and an ExternalDrawable on Linux, the Qt libraries needs to be linked with the systems OpenGL ES libraries when using OpenGL ES, and with the systems OpenGL libraries when using OpenGL. The QtQuickMapControl included with Carmenta Engine has the same requirements.
DirectX
This renderer uses the DirectX API which is only available on Microsoft Windows and it is the only renderer that can be used in a fully hardware accelerated Windows Presentation Foundation application. It provides similar benefits and drawbacks as the OpenGL renderer.
DirectX version: DirectX 11.
Video RAM: This varies depending on the configuration the application loads but a minimum of 512MB is recommended.
Software
A renderer for 2D maps that uses the Anti-Grain Geometry graphics library (see Acknowledgments). It is implemented entirely in software. It is available on all platforms, and should work on any machine, regardless of graphics card or drivers.
While the software renderer is available on all platforms, it can't be used together with a MapControl on Android. The MapControl replaces the view's drawable with a version that uses OpenGL as renderer instead. You can still use the software renderer when drawing using an unattached view with a BitmapDrawable.