ICallbackHandlerReportError Method |
Called when an error occurs in the library.
Namespace: Internal.SharpBgfxAssembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntaxvoid ReportError(
string fileName,
int line,
ErrorType errorType,
string message
)
Parameters
- fileName String
- The name of the source file in which the message originated.
- line Int32
- The line number in which the message originated.
- errorType ErrorType
- The type of error that occurred.
- message String
- Message string detailing what went wrong.
Remarks
If the error type is not
DebugCheck, bgfx is in an
unrecoverable state and the application should terminate.
This method can be called from any thread.
See Also