OWL
OptiX7 Wrapper Library
llowl.h
Go to the documentation of this file.
1
// ======================================================================== //
2
// Copyright 2019-2020 Ingo Wald //
3
// //
4
// Licensed under the Apache License, Version 2.0 (the "License"); //
5
// you may not use this file except in compliance with the License. //
6
// You may obtain a copy of the License at //
7
// //
8
// http://www.apache.org/licenses/LICENSE-2.0 //
9
// //
10
// Unless required by applicable law or agreed to in writing, software //
11
// distributed under the License is distributed on an "AS IS" BASIS, //
12
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //
13
// See the License for the specific language governing permissions and //
14
// limitations under the License. //
15
// ======================================================================== //
16
21
#pragma once
22
23
#ifndef _USE_MATH_DEFINES
24
# define _USE_MATH_DEFINES
25
#endif
26
#include <math.h>
// using cmath causes issues under Windows
27
#ifdef _WIN32
28
#else
29
# include <unistd.h>
30
#endif
31
32
#include <iostream>
33
#include <stdint.h>
34
35
#ifdef _WIN32
36
#pragma warning( push )
37
#pragma warning( disable : 4996 )
38
#endif
39
40
#include <
cuda.h
>
41
#include <driver_types.h>
42
#include <
optix.h
>
43
#ifdef _WIN32
44
#pragma warning( push )
45
#endif
46
47
#if defined(_MSC_VER)
48
# define OWL_LL_DLL_EXPORT __declspec(dllexport)
49
# define OWL_LL_DLL_IMPORT __declspec(dllimport)
50
#elif defined(__clang__) || defined(__GNUC__)
51
# define OWL_LL_DLL_EXPORT __attribute__((visibility("default")))
52
# define OWL_LL_DLL_IMPORT __attribute__((visibility("default")))
53
#else
54
# define OWL_LL_DLL_EXPORT
55
# define OWL_LL_DLL_IMPORT
56
#endif
57
58
#ifdef llowl_EXPORTS
59
# define OWL_LL_INTERFACE OWL_LL_DLL_EXPORT
60
#else
61
# define OWL_LL_INTERFACE OWL_LL_DLL_IMPORT
62
#endif
63
64
optix.h
cuda.h
owl
include
owl
llowl.h
Generated by
1.8.20