#include "owl/helper/cuda.h"
#include <optix.h>
#include <optix_function_table.h>
#include <optix_stubs.h>
Go to the source code of this file.
◆ OPTIX_CALL
◆ OPTIX_CHECK
#define OPTIX_CHECK |
( |
|
call | ) |
|
Value: { \
OptixResult res = call; \
if( res != OPTIX_SUCCESS ) \
{ \
fprintf( stderr, "Optix call (%s) failed with code %d (line %d)\n", #call, res, __LINE__ ); \
exit( 2 ); \
} \
}
◆ OPTIX_CHECK_LOG
#define OPTIX_CHECK_LOG |
( |
|
call | ) |
|
Value: { \
OptixResult res = call; \
if( res != OPTIX_SUCCESS ) \
{ \
fprintf( stderr, "Optix call (%s) failed with code %d (line %d)\n", #call, res, __LINE__ ); \
fprintf( stderr, "Log:\n%s\n", log ); \
exit( 2 ); \
} \
}