OWL
OptiX7 Wrapper Library
common.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 #include <owl/common/math/vec.h>
24 #include <owl/common/math/box.h>
26 
27 #include <string.h>
28 #include <set>
29 #include <map>
30 #include <vector>
31 #include <stack>
32 #include <typeinfo>
33 #include <mutex>
34 #include <atomic>
35 #include <sstream>
36 
37 namespace owl {
38  using owl::common::vec2uc;
39  using owl::common::vec3uc;
40  using owl::common::vec4uc;
41 
42  using owl::common::vec2f;
43  using owl::common::vec3f;
44  using owl::common::vec4f;
45 
46  using owl::common::vec2i;
47  using owl::common::vec3i;
48  using owl::common::vec4i;
49 
50  using owl::common::vec2ui;
51  using owl::common::vec3ui;
52  using owl::common::vec4ui;
53 
54  using owl::common::vec2l;
55  using owl::common::vec3l;
56  using owl::common::vec4l;
57 
58  using owl::common::vec2ul;
59  using owl::common::vec3ul;
60  using owl::common::vec4ul;
61 
62  using owl::common::box3f;
65 
68 
69  template<size_t alignment>
70  inline size_t smallestMultipleOf(size_t unalignedSize)
71  {
72  const size_t numBlocks = (unalignedSize+alignment-1)/alignment;
73  return numBlocks*alignment;
74  }
75 
76  inline void *addPointerOffset(void *ptr, size_t offset)
77  {
78  if (ptr == nullptr) return nullptr;
79  return (void*)((unsigned char *)ptr + offset);
80  }
81 
82 }
83 
84 #define IGNORING_THIS() std::cout << OWL_TERMINAL_YELLOW << "## ignoring " << __PRETTY_FUNCTION__ << OWL_TERMINAL_DEFAULT << std::endl;
85 
owl::smallestMultipleOf
size_t smallestMultipleOf(size_t unalignedSize)
Definition: common.h:70
owl::common::prettyDouble
std::string prettyDouble(const double val)
Definition: owl-common.h:210
owl::common::affine3f
AffineSpace3f affine3f
Definition: AffineSpace.h:167
box.h
owl::common::prettyNumber
std::string prettyNumber(const size_t s)
Definition: owl-common.h:232
owl::common::linear3f
LinearSpace3f linear3f
Definition: LinearSpace.h:395
owl::addPointerOffset
void * addPointerOffset(void *ptr, size_t offset)
Definition: common.h:76
vec.h
owl
Definition: APIContext.cpp:36
AffineSpace.h