.\" Automatically generated by Pandoc 3.1.3 .\" .\" Define V font for inline verbatim, using C font in formats .\" that render this, and otherwise B font. .ie "\f[CB]x\f[]"x" \{\ . ftr V B . ftr VI BI . ftr VB B . ftr VBI BI .\} .el \{\ . ftr V CR . ftr VI CI . ftr VB CB . ftr VBI CBI .\} .TH "rtcGetErrorString" "3" "" "" "Embree Ray Tracing Kernels 4" .hy .SS NAME .IP .nf \f[C] rtcGetErrorString - returns a string representation of a given RTCError \f[R] .fi .SS SYNOPSIS .IP .nf \f[C] #include const char* rtcGetErrorString(RTCError code); \f[R] .fi .SS DESCRIPTION .PP Returns a string representation for a \f[V]RTCError\f[R] error code. For example, for the \f[V]RTCError\f[R] RTC_ERROR_UNKNOWN this function will return the string \[lq]Unknown Error\[rq]. This is purely a convenience function for printing error information on the user side. .PP The returned strings should not be used for comparing different \f[V]RTCError\f[R] error codes or make other decisions based on the type of error that occurred. For such things only the \f[V]RTCError\f[R] enum values should be used. .SS EXIT STATUS .PP Returns a string representation of a given \f[V]RTCError\f[R] error code. .SS SEE ALSO .PP [rtcGetDeviceError]