Vulkan

From Lazarus wiki
Revision as of 15:20, 26 March 2017 by Skalogryz (talk | contribs) (creating category)
Jump to navigationJump to search

Vulkan is a new low-level Graphics API, intended to replace OpenGL.

Float Point Exception

Similar to OpenGL apps, the float-point exceptions should be turned off. This can be achieved by adding the following code prior to calling Vulkan API:

SetExceptionMask([exInvalidOp, exDenormalized, exPrecision]);

Headers

There are not Vulkan headers in fpc packages, but some are available online:

See Also