Kanzi 3.6.12 migration guide

Use this migration guide to update Kanzi applications from Kanzi 3.6.11 to 3.6.12.

Graphics library configuration

In earlier versions of Kanzi to set the surface target for OpenGL ES rendering and EGL graphics context, in the Application::onConfigure() function you used

configuration.defaultSurfaceProperties.type = KZS_SURFACE_TYPE_ES2_ONLY;

In Kanzi 3.6.12 use

configuration.defaultSurfaceProperties.type = KZS_SURFACE_TYPE_GLES_ONLY;

See Graphics library.