NativeRendererType Enumeration
Specifies the actual rendering API used by a drawable.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public enum NativeRendererType
Values
Value name | Value | Description |
---|---|---|
OpenGL | 0 | Indicates that the drawable is using standard desktop OpenGL. |
OpenGLES3 | 2 | Indicates that the drawable is using OpenGL ES 3. |
Remarks
The actual rendering API used by a drawable is important for any application doing custom native rendering, in ICustomNativeVisualizer.Draw or ICustomNativeSymbol.Draw, or in event handlers for View.CustomDrawBackground or View.CustomDraw.
It is possible for a custom component to support more than one of these APIs. Most implementations will will only support one API, but they should at least check that the API used by the drawable is the expected, through Drawable.GetNativeRendererInfo.
Custom rendering is currently only supported for OpenGL renderers. See Custom Native Rendering for more information.
Platforms
Windows, Linux, Android