Miscellaneous
Navigation: Samples → Cauldron
Miscellaneous
FidelityFX Cauldron Framework Misc reference documentation.
Submodules
- Assert - FidelityFX Cauldron Framework’s assert support.
- CoreCounts - Wrapper for AMD CPU Services library to fetch with core count recommendations.
- FileIO - File read/write support for FidelityFX Cauldron Framework.
- Helpers - Helper functions used throughout Cauldron.
- Math - Sony VectorMath library wrapper.
Enumerations
LogLevel
enum LogLevel : int32_t
An enumeration of message log types.
Values:
LOGLEVEL_TRACE
LOGLEVEL_TRACE = 0x1 <<0
Trace message.
LOGLEVEL_DEBUG
LOGLEVEL_DEBUG = 0x1 <<1
Debug message (only shows in debug builds).
LOGLEVEL_INFO
LOGLEVEL_INFO = 0x1 <<2
Information message.
LOGLEVEL_WARNING
LOGLEVEL_WARNING = 0x1 <<3
Warning message.
LOGLEVEL_ERROR
LOGLEVEL_ERROR = 0x1 <<4
Error message. Will show an error dialog on Windows.
LOGLEVEL_FATAL
LOGLEVEL_FATAL = 0x1 <<5
Fatal message. This will throw a critical assert and halt execution.
LOGLEVEL_COUNT
LOGLEVEL_COUNT = 6
Message type count.
Source: framework/cauldron/framework/inc/misc/log.h
(line 40, column 5)