OWL
OptiX7 Wrapper Library
optix.h File Reference
#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.

Macros

#define OPTIX_CHECK(call)
 
#define OPTIX_CHECK_LOG(call)
 
#define OPTIX_CALL(call)   OPTIX_CHECK(optix##call)
 

Macro Definition Documentation

◆ OPTIX_CALL

#define OPTIX_CALL (   call)    OPTIX_CHECK(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 ); \
} \
}