From 4c20722d042f278d073401348429988055bbdc53 Mon Sep 17 00:00:00 2001 From: Carson Brownlee Date: Mon, 1 Jan 2018 18:55:08 -0500 Subject: [PATCH 1/8] fixing potential issue with static initialization order of imgui --- .../common/imgui/imguifilesystem/imguifilesystem.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/apps/exampleViewer/common/imgui/imguifilesystem/imguifilesystem.cpp b/apps/exampleViewer/common/imgui/imguifilesystem/imguifilesystem.cpp index 4e773818d1..938c1747c3 100644 --- a/apps/exampleViewer/common/imgui/imguifilesystem/imguifilesystem.cpp +++ b/apps/exampleViewer/common/imgui/imguifilesystem/imguifilesystem.cpp @@ -1483,13 +1483,17 @@ struct ImGuiFsDrawIconStruct { return drawIcon(extType,pOptionalColorOverride); } }; -static ImGuiFsDrawIconStruct MyImGuiFsDrawIconStruct; +ImGuiFsDrawIconStruct& MyImGuiFsDrawIconStruct() +{ + static ImGuiFsDrawIconStruct singleton; + return singleton; +} #ifndef IMGUIFS_NO_EXTRA_METHODS int FileGetExtensionType(const char* path) { - return MyImGuiFsDrawIconStruct.getExtensionType(strrchr(path,'.')); + return MyImGuiFsDrawIconStruct().getExtensionType(strrchr(path,'.')); } void FileGetExtensionTypesFromFilenames(ImVector& fileExtensionTypesOut,const FilenameStringVector& fileNames) { - MyImGuiFsDrawIconStruct.fillExtensionTypesFromFilenames(fileExtensionTypesOut,fileNames); + MyImGuiFsDrawIconStruct().fillExtensionTypesFromFilenames(fileExtensionTypesOut,fileNames); } #if (defined(__EMSCRIPTEN__) && defined(EMSCRIPTEN_SAVE_SHELL)) bool FileDownload(const char* path,const char* optionalSaveFileName) { @@ -2053,7 +2057,7 @@ const char* ChooseFileMainMethod(Dialog& ist,const char* directory,const bool _i if (!isSelectFolderDialog) { if (!fileFilterExtensionString || strlen(fileFilterExtensionString)==0) Directory::GetFiles(I.currentFolder,I.files,&I.fileNames,(Sorting)I.sortingMode); else Directory::GetFiles(I.currentFolder,I.files,fileFilterExtensionString,NULL,&I.fileNames,(Sorting)I.sortingMode); - if (Dialog::DrawFileIconCallback) MyImGuiFsDrawIconStruct.fillExtensionTypesFromFilenames(I.fileExtensionTypes,I.fileNames); + if (Dialog::DrawFileIconCallback) MyImGuiFsDrawIconStruct().fillExtensionTypesFromFilenames(I.fileExtensionTypes,I.fileNames); } else { I.files.clear();I.fileNames.clear();I.fileExtensionTypes.clear(); From 330191576c6be26dbbdf56bcd59dc799085ca448 Mon Sep 17 00:00:00 2001 From: Carson Brownlee Date: Thu, 4 Jan 2018 16:24:36 -0500 Subject: [PATCH 2/8] 64 addr lookup for sphere colorids --- ospray/geometry/Spheres.ispc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ospray/geometry/Spheres.ispc b/ospray/geometry/Spheres.ispc index ff17bb2fc3..1706e711c1 100644 --- a/ospray/geometry/Spheres.ispc +++ b/ospray/geometry/Spheres.ispc @@ -74,8 +74,8 @@ static void Spheres_postIntersect(uniform Geometry *uniform geometry, colorID = *((uniform uint32 *varying)(spherePtr+self->offset_colorID)); } else colorID = ray.primID; - uint32 colorAddr = self->color_offset+colorID*self->color_stride; - dg.color = *((vec4f *)(self->color+colorAddr)); + const uint64 colorAddr = self->color_offset+((uint64)colorID)*self->color_stride; + dg.color = *((vec4f *)((uint64)self->color+colorAddr)); if (!self->has_alpha) dg.color.w = 1.f; } From 51faf2074a35d03cc5783d5b877fd547f2e62190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=BCnther?= Date: Tue, 9 Jan 2018 16:27:17 +0100 Subject: [PATCH 3/8] Update copyright year --- apps/CMakeLists.txt | 2 +- apps/bench/CMakeLists.txt | 2 +- apps/bench/bench.cpp | 2 +- apps/common/sg/CMakeLists.txt | 2 +- apps/common/sg/Renderer.cpp | 2 +- apps/common/sg/Renderer.h | 2 +- apps/common/sg/SceneGraph.cpp | 2 +- apps/common/sg/SceneGraph.h | 2 +- apps/common/sg/camera/Camera.h | 2 +- apps/common/sg/camera/OrthographicCamera.cpp | 2 +- apps/common/sg/camera/OrthographicCamera.h | 2 +- apps/common/sg/camera/PanoramicCamera.cpp | 2 +- apps/common/sg/camera/PanoramicCamera.h | 2 +- apps/common/sg/camera/PerspectiveCamera.cpp | 2 +- apps/common/sg/camera/PerspectiveCamera.h | 2 +- apps/common/sg/common/AnimationController.cpp | 2 +- apps/common/sg/common/Animator.cpp | 2 +- apps/common/sg/common/Common.cpp | 2 +- apps/common/sg/common/Common.h | 2 +- apps/common/sg/common/Data.cpp | 2 +- apps/common/sg/common/Data.h | 2 +- apps/common/sg/common/FrameBuffer.cpp | 2 +- apps/common/sg/common/FrameBuffer.h | 2 +- apps/common/sg/common/Light.cpp | 2 +- apps/common/sg/common/Material.cpp | 2 +- apps/common/sg/common/Material.h | 2 +- apps/common/sg/common/Node.cpp | 2 +- apps/common/sg/common/Node.h | 2 +- apps/common/sg/common/NodeList.h | 2 +- apps/common/sg/common/RenderContext.h | 2 +- apps/common/sg/common/Renderable.cpp | 2 +- apps/common/sg/common/Renderable.h | 2 +- apps/common/sg/common/RuntimeError.h | 2 +- apps/common/sg/common/Selector.cpp | 2 +- apps/common/sg/common/Serialization.h | 2 +- apps/common/sg/common/Texture2D.cpp | 2 +- apps/common/sg/common/Texture2D.h | 2 +- apps/common/sg/common/TimeStamp.cpp | 2 +- apps/common/sg/common/TimeStamp.h | 2 +- apps/common/sg/common/Transform.cpp | 2 +- apps/common/sg/common/Transform.h | 2 +- apps/common/sg/common/World.cpp | 2 +- apps/common/sg/common/World.h | 2 +- apps/common/sg/geometry/Geometry.cpp | 2 +- apps/common/sg/geometry/Geometry.h | 2 +- apps/common/sg/geometry/Spheres.cpp | 2 +- apps/common/sg/geometry/Spheres.h | 2 +- apps/common/sg/geometry/StreamLines.cpp | 2 +- apps/common/sg/geometry/StreamLines.h | 2 +- apps/common/sg/geometry/TriangleMesh.cpp | 2 +- apps/common/sg/geometry/TriangleMesh.h | 2 +- apps/common/sg/importer/Importer.cpp | 2 +- apps/common/sg/importer/Importer.h | 2 +- apps/common/sg/importer/detail_xyz/Model.cpp | 2 +- apps/common/sg/importer/detail_xyz/Model.h | 2 +- apps/common/sg/importer/importOBJ.cpp | 2 +- apps/common/sg/importer/importOSP.cpp | 2 +- apps/common/sg/importer/importOSPModel.cpp | 2 +- apps/common/sg/importer/importOSPSG.cpp | 2 +- apps/common/sg/importer/importOSX.cpp | 2 +- apps/common/sg/importer/importPLY.cpp | 2 +- apps/common/sg/importer/importPoints.cpp | 2 +- apps/common/sg/importer/importRIVL.cpp | 2 +- apps/common/sg/importer/importTetVolume.cpp | 2 +- apps/common/sg/importer/importXYZ.cpp | 2 +- apps/common/sg/module/Module.cpp | 2 +- apps/common/sg/module/Module.h | 2 +- apps/common/sg/transferFunction/TransferFunction.cpp | 2 +- apps/common/sg/transferFunction/TransferFunction.h | 2 +- apps/common/sg/volume/TetVolume.cpp | 2 +- apps/common/sg/volume/TetVolume.h | 2 +- apps/common/sg/volume/Volume.cpp | 2 +- apps/common/sg/volume/Volume.h | 2 +- apps/common/tfn_lib/CMakeLists.txt | 2 +- apps/common/tfn_lib/convertParaViewTfcn.cpp | 2 +- apps/common/tfn_lib/tfn_lib.cpp | 2 +- apps/common/tfn_lib/tfn_lib.h | 2 +- apps/common/xml/CMakeLists.txt | 2 +- apps/common/xml/XML.cpp | 2 +- apps/common/xml/XML.h | 2 +- apps/exampleViewer/CMakeLists.txt | 2 +- apps/exampleViewer/common/CMakeLists.txt | 2 +- apps/exampleViewer/ospExampleViewer.cpp | 2 +- apps/exampleViewer/widgets/CMakeLists.txt | 2 +- apps/ospTutorial.c | 2 +- apps/ospTutorial.cpp | 2 +- apps/utility/CMakeLists.txt | 2 +- apps/utility/raw2amr.cpp | 2 +- cmake/configure_embree.cmake | 2 +- cmake/doxygen.cmake | 2 +- cmake/ospray_cmake_config.cmake | 2 +- cmake/ospray_cmake_config/osprayConfig.cmake.in | 2 +- cmake/ospray_cmake_config/osprayConfigVersion.cmake.in | 2 +- cmake/ospray_cmake_config/osprayUse.cmake.in | 2 +- cmake/ospray_macros.cmake | 2 +- cmake/ospray_options.cmake | 2 +- cmake/package.cmake | 2 +- components/configure.cmake | 2 +- components/mpiCommon/CMakeLists.txt | 2 +- components/mpiCommon/MPIBcastFabric.cpp | 2 +- components/mpiCommon/MPIBcastFabric.h | 2 +- components/mpiCommon/MPICommon.cpp | 2 +- components/mpiCommon/MPICommon.h | 2 +- components/mpiCommon/include.cmake | 2 +- components/mpiMessageLayer/CMakeLists.txt | 2 +- components/mpiMessageLayer/include.cmake | 2 +- components/mpiService/CMakeLists.txt | 2 +- components/mpiService/MPIService.cpp | 2 +- components/mpiService/MPIService.h | 2 +- components/mpiService/include.cmake | 2 +- components/ospcommon/AffineSpace.h | 2 +- components/ospcommon/AsyncLoop.h | 2 +- components/ospcommon/CMakeLists.txt | 2 +- components/ospcommon/FileName.cpp | 2 +- components/ospcommon/FileName.h | 2 +- components/ospcommon/LinearSpace.h | 2 +- components/ospcommon/Quaternion.h | 2 +- components/ospcommon/RefCount.h | 2 +- components/ospcommon/TypeTraits.h | 2 +- components/ospcommon/array3D/Array3D.cpp | 2 +- components/ospcommon/array3D/Array3D.h | 2 +- components/ospcommon/array3D/for_each.h | 2 +- components/ospcommon/box.h | 2 +- components/ospcommon/cmake/FindGLFW.cmake | 2 +- components/ospcommon/cmake/FindOpenImageIO.cmake | 2 +- components/ospcommon/cmake/FindTBB.cmake | 2 +- components/ospcommon/cmake/Findlibdispatch.cmake | 2 +- components/ospcommon/cmake/clang.cmake | 2 +- components/ospcommon/cmake/gcc.cmake | 2 +- components/ospcommon/cmake/icc.cmake | 2 +- components/ospcommon/cmake/ispc.cmake | 2 +- components/ospcommon/cmake/macros.cmake | 2 +- components/ospcommon/cmake/msvc.cmake | 2 +- components/ospcommon/common.cpp | 2 +- components/ospcommon/common.h | 2 +- components/ospcommon/constants.h | 2 +- components/ospcommon/containers/TransactionalBuffer.h | 2 +- components/ospcommon/intrinsics.h | 2 +- components/ospcommon/library.cpp | 2 +- components/ospcommon/library.h | 2 +- components/ospcommon/malloc.cpp | 2 +- components/ospcommon/malloc.h | 2 +- components/ospcommon/math.h | 2 +- components/ospcommon/networking/BufferedDataStreaming.cpp | 2 +- components/ospcommon/networking/BufferedDataStreaming.h | 2 +- components/ospcommon/networking/DataStreaming.h | 2 +- components/ospcommon/networking/Fabric.h | 2 +- components/ospcommon/networking/Socket.cpp | 2 +- components/ospcommon/networking/Socket.h | 2 +- components/ospcommon/platform.h | 2 +- components/ospcommon/range.h | 2 +- components/ospcommon/sysinfo.cpp | 2 +- components/ospcommon/sysinfo.h | 2 +- components/ospcommon/tasking/async.h | 2 +- components/ospcommon/tasking/detail/TaskSys.cpp | 2 +- components/ospcommon/tasking/detail/TaskSys.h | 2 +- components/ospcommon/tasking/detail/parallel_for.inl | 2 +- components/ospcommon/tasking/detail/schedule.inl | 2 +- components/ospcommon/tasking/detail/tasking_system_handle.cpp | 2 +- components/ospcommon/tasking/parallel_for.h | 2 +- components/ospcommon/tasking/schedule.h | 2 +- components/ospcommon/tasking/tasking_system_handle.h | 2 +- components/ospcommon/thread.cpp | 2 +- components/ospcommon/thread.h | 2 +- components/ospcommon/utility/Any.h | 2 +- components/ospcommon/utility/ArrayView.h | 2 +- components/ospcommon/utility/CodeTimer.h | 2 +- components/ospcommon/utility/DeletedUniquePtr.h | 2 +- components/ospcommon/utility/DoubleBufferedValue.h | 2 +- components/ospcommon/utility/OnScopeExit.h | 2 +- components/ospcommon/utility/Optional.h | 2 +- components/ospcommon/utility/PseudoURL.cpp | 2 +- components/ospcommon/utility/PseudoURL.h | 2 +- components/ospcommon/utility/getEnvVar.h | 2 +- components/ospcommon/vec.cpp | 2 +- components/ospcommon/vec.h | 2 +- modules/CMakeLists.txt | 2 +- modules/mpi/CMakeLists.txt | 2 +- modules/mpi/MPIDistributedDevice.cpp | 2 +- modules/mpi/MPIDistributedDevice.h | 2 +- modules/mpi/MPIOffloadDevice.cpp | 2 +- modules/mpi/MPIOffloadDevice.h | 2 +- modules/mpi/MPIOffloadWorker.cpp | 2 +- modules/mpi/apps/CMakeLists.txt | 2 +- modules/mpi/apps/gensv/raw_reader.h | 2 +- modules/mpi/apps/ospDDLoader.cpp | 2 +- modules/mpi/apps/viewer/CMakeLists.txt | 2 +- modules/mpi/common/DistributedModel.cpp | 2 +- modules/mpi/common/DistributedModel.h | 2 +- modules/mpi/common/DistributedModel.ispc | 2 +- modules/mpi/common/Messaging.cpp | 2 +- modules/mpi/common/Messaging.h | 2 +- modules/mpi/common/OSPWork.cpp | 2 +- modules/mpi/common/OSPWork.h | 2 +- modules/mpi/fb/DistributedFrameBuffer.cpp | 2 +- modules/mpi/fb/DistributedFrameBuffer.h | 2 +- modules/mpi/fb/DistributedFrameBuffer.ispc | 2 +- modules/mpi/fb/DistributedFrameBuffer_TileTypes.cpp | 2 +- modules/mpi/fb/DistributedFrameBuffer_TileTypes.h | 2 +- modules/mpi/mpi_offload_worker_main.cpp | 2 +- modules/mpi/render/MPILoadBalancer.cpp | 2 +- modules/mpi/render/MPILoadBalancer.h | 2 +- modules/mpi/render/distributed/DistributedRaycast.cpp | 2 +- modules/mpi/render/distributed/DistributedRaycast.h | 2 +- modules/mpi/render/distributed/DistributedRaycast.ispc | 2 +- modules/mpi/testing/TestAsyncBandwidth.cpp | 2 +- modules/mpi/testing/TestAsyncCorrectness.cpp | 2 +- modules/mpi/testing/TestDistributedApp.cpp | 2 +- modules/mpi/testing/createCompositeTestCubes.cpp | 2 +- modules/pluggableGeometryExample/CMakeLists.txt | 2 +- modules/pluggableGeometryExample/apps/CMakeLists.txt | 2 +- modules/pluggableGeometryExample/apps/CommandLine.h | 2 +- modules/pluggableGeometryExample/apps/Patch.cpp | 2 +- modules/pluggableGeometryExample/apps/Patch.h | 2 +- modules/pluggableGeometryExample/apps/bilinearPatchViewer.cpp | 2 +- modules/pluggableGeometryExample/ospray/CMakeLists.txt | 2 +- .../ospray/geometry/BilinearPatches.cpp | 2 +- .../pluggableGeometryExample/ospray/geometry/BilinearPatches.h | 2 +- .../ospray/geometry/BilinearPatches.ispc | 2 +- modules/pluggableGeometryExample/ospray/moduleInit.cpp | 2 +- ospray/CMakeLists.txt | 2 +- ospray/api/API.cpp | 2 +- ospray/api/Device.cpp | 2 +- ospray/api/Device.h | 2 +- ospray/api/LocalDevice.cpp | 2 +- ospray/api/LocalDevice.h | 2 +- ospray/camera/Camera.cpp | 2 +- ospray/camera/Camera.h | 2 +- ospray/camera/Camera.ih | 2 +- ospray/camera/Camera.ispc | 2 +- ospray/camera/OrthographicCamera.cpp | 2 +- ospray/camera/OrthographicCamera.h | 2 +- ospray/camera/OrthographicCamera.ih | 2 +- ospray/camera/OrthographicCamera.ispc | 2 +- ospray/camera/PanoramicCamera.cpp | 2 +- ospray/camera/PanoramicCamera.h | 2 +- ospray/camera/PanoramicCamera.ih | 2 +- ospray/camera/PanoramicCamera.ispc | 2 +- ospray/camera/PerspectiveCamera.cpp | 2 +- ospray/camera/PerspectiveCamera.h | 2 +- ospray/camera/PerspectiveCamera.ih | 2 +- ospray/camera/PerspectiveCamera.ispc | 2 +- ospray/common/Data.cpp | 2 +- ospray/common/Data.h | 2 +- ospray/common/DifferentialGeometry.ih | 2 +- ospray/common/Library.h | 2 +- ospray/common/Managed.cpp | 2 +- ospray/common/Managed.h | 2 +- ospray/common/Material.cpp | 2 +- ospray/common/Material.h | 2 +- ospray/common/Material.ih | 2 +- ospray/common/Model.cpp | 2 +- ospray/common/Model.h | 2 +- ospray/common/Model.ih | 2 +- ospray/common/Model.ispc | 2 +- ospray/common/OSPCommon.cpp | 2 +- ospray/common/OSPCommon.h | 2 +- ospray/common/OSPCommon.ih | 2 +- ospray/common/OSPCommon.ispc | 2 +- ospray/common/OSPConfig.h.in | 2 +- ospray/common/ObjectHandle.cpp | 2 +- ospray/common/ObjectHandle.h | 2 +- ospray/common/Ray.h | 2 +- ospray/common/Ray.ih | 2 +- ospray/common/Texture.h | 2 +- ospray/common/Util.h | 2 +- ospray/fb/FrameBuffer.cpp | 2 +- ospray/fb/FrameBuffer.h | 2 +- ospray/fb/FrameBuffer.ih | 2 +- ospray/fb/FrameBuffer.ispc | 2 +- ospray/fb/LocalFB.cpp | 2 +- ospray/fb/LocalFB.h | 2 +- ospray/fb/LocalFB.ih | 2 +- ospray/fb/LocalFB.ispc | 2 +- ospray/fb/PixelOp.cpp | 2 +- ospray/fb/PixelOp.h | 2 +- ospray/fb/Tile.h | 2 +- ospray/fb/Tile.ih | 2 +- ospray/fb/TileError.cpp | 2 +- ospray/fb/TileError.h | 2 +- ospray/geometry/Cylinders.cpp | 2 +- ospray/geometry/Cylinders.h | 2 +- ospray/geometry/Cylinders.ispc | 2 +- ospray/geometry/Geometry.cpp | 2 +- ospray/geometry/Geometry.h | 2 +- ospray/geometry/Geometry.ih | 2 +- ospray/geometry/Geometry.ispc | 2 +- ospray/geometry/Instance.cpp | 2 +- ospray/geometry/Instance.h | 2 +- ospray/geometry/Instance.ih | 2 +- ospray/geometry/Instance.ispc | 2 +- ospray/geometry/Isosurfaces.cpp | 2 +- ospray/geometry/Isosurfaces.h | 2 +- ospray/geometry/Isosurfaces.ispc | 2 +- ospray/geometry/Slices.cpp | 2 +- ospray/geometry/Slices.h | 2 +- ospray/geometry/Slices.ispc | 2 +- ospray/geometry/Spheres.cpp | 2 +- ospray/geometry/Spheres.h | 2 +- ospray/geometry/Spheres.ispc | 2 +- ospray/geometry/StreamLines.cpp | 2 +- ospray/geometry/StreamLines.h | 2 +- ospray/geometry/StreamLines.ispc | 2 +- ospray/geometry/TriangleMesh.cpp | 2 +- ospray/geometry/TriangleMesh.h | 2 +- ospray/geometry/TriangleMesh.ih | 2 +- ospray/geometry/TriangleMesh.ispc | 2 +- ospray/include/ospray/OSPDataType.h | 2 +- ospray/include/ospray/OSPTexture.h | 2 +- ospray/include/ospray/ospray.h | 2 +- ospray/include/ospray/ospray_cpp.h | 2 +- ospray/include/ospray/ospray_cpp/Camera.h | 2 +- ospray/include/ospray/ospray_cpp/Data.h | 2 +- ospray/include/ospray/ospray_cpp/Device.h | 2 +- ospray/include/ospray/ospray_cpp/FrameBuffer.h | 2 +- ospray/include/ospray/ospray_cpp/Geometry.h | 2 +- ospray/include/ospray/ospray_cpp/Light.h | 2 +- ospray/include/ospray/ospray_cpp/ManagedObject.h | 2 +- ospray/include/ospray/ospray_cpp/Material.h | 2 +- ospray/include/ospray/ospray_cpp/Model.h | 2 +- ospray/include/ospray/ospray_cpp/PixelOp.h | 2 +- ospray/include/ospray/ospray_cpp/Renderer.h | 2 +- ospray/include/ospray/ospray_cpp/Texture2D.h | 2 +- ospray/include/ospray/ospray_cpp/TransferFunction.h | 2 +- ospray/include/ospray/ospray_cpp/Volume.h | 2 +- ospray/lights/AmbientLight.cpp | 2 +- ospray/lights/AmbientLight.h | 2 +- ospray/lights/AmbientLight.ispc | 2 +- ospray/lights/DirectionalLight.cpp | 2 +- ospray/lights/DirectionalLight.h | 2 +- ospray/lights/DirectionalLight.ispc | 2 +- ospray/lights/HDRILight.cpp | 2 +- ospray/lights/HDRILight.h | 2 +- ospray/lights/HDRILight.ispc | 2 +- ospray/lights/Light.cpp | 2 +- ospray/lights/Light.h | 2 +- ospray/lights/Light.ih | 2 +- ospray/lights/Light.ispc | 2 +- ospray/lights/PointLight.cpp | 2 +- ospray/lights/PointLight.h | 2 +- ospray/lights/PointLight.ispc | 2 +- ospray/lights/QuadLight.cpp | 2 +- ospray/lights/QuadLight.h | 2 +- ospray/lights/QuadLight.ispc | 2 +- ospray/lights/SpotLight.cpp | 2 +- ospray/lights/SpotLight.h | 2 +- ospray/lights/SpotLight.ispc | 2 +- ospray/math/AffineSpace.ih | 2 +- ospray/math/Distribution1D.ih | 2 +- ospray/math/Distribution1D.ispc | 2 +- ospray/math/Distribution2D.ih | 2 +- ospray/math/Distribution2D.ispc | 2 +- ospray/math/LinearSpace.ih | 2 +- ospray/math/box.ih | 2 +- ospray/math/box.ispc | 2 +- ospray/math/math.ih | 2 +- ospray/math/random.ih | 2 +- ospray/math/sampling.ih | 2 +- ospray/math/spectrum.h | 2 +- ospray/math/spectrum.ih | 2 +- ospray/math/spectrum.ispc | 2 +- ospray/math/vec.ih | 2 +- ospray/render/LoadBalancer.cpp | 2 +- ospray/render/LoadBalancer.h | 2 +- ospray/render/Renderer.cpp | 2 +- ospray/render/Renderer.h | 2 +- ospray/render/Renderer.ih | 2 +- ospray/render/Renderer.ispc | 2 +- ospray/render/pathtracer/GeometryLight.ispc | 2 +- ospray/render/pathtracer/PathTracer.cpp | 2 +- ospray/render/pathtracer/PathTracer.h | 2 +- ospray/render/pathtracer/PathTracer.ih | 2 +- ospray/render/pathtracer/PathTracer.ispc | 2 +- ospray/render/pathtracer/bsdfs/BSDF.ih | 2 +- ospray/render/pathtracer/bsdfs/Conductor.ih | 2 +- ospray/render/pathtracer/bsdfs/Dielectric.ih | 2 +- ospray/render/pathtracer/bsdfs/DielectricLayer.ih | 2 +- ospray/render/pathtracer/bsdfs/Fresnel.ih | 2 +- ospray/render/pathtracer/bsdfs/GGXDistribution.ih | 2 +- ospray/render/pathtracer/bsdfs/Lambert.ih | 2 +- ospray/render/pathtracer/bsdfs/MicrofacetConductor.ih | 2 +- ospray/render/pathtracer/bsdfs/MicrofacetDielectricLayer.ih | 2 +- ospray/render/pathtracer/bsdfs/Minneart.ih | 2 +- ospray/render/pathtracer/bsdfs/MultiBSDF.ih | 2 +- ospray/render/pathtracer/bsdfs/Optics.ih | 2 +- ospray/render/pathtracer/bsdfs/PowerCosineDistribution.ih | 2 +- ospray/render/pathtracer/bsdfs/Reflection.ih | 2 +- ospray/render/pathtracer/bsdfs/Scale.ih | 2 +- ospray/render/pathtracer/bsdfs/ShadingContext.ih | 2 +- ospray/render/pathtracer/bsdfs/Specular.ih | 2 +- ospray/render/pathtracer/bsdfs/ThinDielectric.ih | 2 +- ospray/render/pathtracer/bsdfs/Transmission.ih | 2 +- ospray/render/pathtracer/bsdfs/Velvety.ih | 2 +- ospray/render/pathtracer/materials/Alloy.cpp | 2 +- ospray/render/pathtracer/materials/Alloy.ispc | 2 +- ospray/render/pathtracer/materials/Glass.cpp | 2 +- ospray/render/pathtracer/materials/Glass.ispc | 2 +- ospray/render/pathtracer/materials/Luminous.cpp | 2 +- ospray/render/pathtracer/materials/Luminous.ispc | 2 +- ospray/render/pathtracer/materials/Material.ih | 2 +- ospray/render/pathtracer/materials/Material.ispc | 2 +- ospray/render/pathtracer/materials/Medium.ih | 2 +- ospray/render/pathtracer/materials/Metal.cpp | 2 +- ospray/render/pathtracer/materials/Metal.ispc | 2 +- ospray/render/pathtracer/materials/MetallicPaint.cpp | 2 +- ospray/render/pathtracer/materials/MetallicPaint.ispc | 2 +- ospray/render/pathtracer/materials/Mix.cpp | 2 +- ospray/render/pathtracer/materials/Mix.ispc | 2 +- ospray/render/pathtracer/materials/OBJ.cpp | 2 +- ospray/render/pathtracer/materials/OBJ.ispc | 2 +- ospray/render/pathtracer/materials/Plastic.cpp | 2 +- ospray/render/pathtracer/materials/Plastic.ispc | 2 +- ospray/render/pathtracer/materials/ThinGlass.cpp | 2 +- ospray/render/pathtracer/materials/ThinGlass.ispc | 2 +- ospray/render/pathtracer/materials/Velvet.cpp | 2 +- ospray/render/pathtracer/materials/Velvet.ispc | 2 +- ospray/render/raycast/RaycastRenderer.cpp | 2 +- ospray/render/raycast/RaycastRenderer.h | 2 +- ospray/render/raycast/RaycastRenderer.ispc | 2 +- ospray/render/scivis/SciVisMaterial.cpp | 2 +- ospray/render/scivis/SciVisMaterial.h | 2 +- ospray/render/scivis/SciVisMaterial.ih | 2 +- ospray/render/scivis/SciVisMaterial.ispc | 2 +- ospray/render/scivis/SciVisRenderer.cpp | 2 +- ospray/render/scivis/SciVisRenderer.h | 2 +- ospray/render/scivis/SciVisRenderer.ih | 2 +- ospray/render/scivis/SciVisRenderer.ispc | 2 +- ospray/render/scivis/lightAlpha.ispc | 2 +- ospray/render/scivis/surfaceShading.ih | 2 +- ospray/render/scivis/surfaceShading.ispc | 2 +- ospray/render/scivis/volumeIntegration.ispc | 2 +- ospray/render/simpleAO/SimpleAO.cpp | 2 +- ospray/render/simpleAO/SimpleAO.h | 2 +- ospray/render/simpleAO/SimpleAO.ispc | 2 +- ospray/render/simpleAO/SimpleAOMaterial.cpp | 2 +- ospray/render/simpleAO/SimpleAOMaterial.h | 2 +- ospray/render/simpleAO/SimpleAOMaterial.ih | 2 +- ospray/render/simpleAO/SimpleAOMaterial.ispc | 2 +- ospray/render/util.h | 2 +- ospray/render/util.ih | 2 +- ospray/render/util.ispc | 2 +- ospray/texture/Texture2D.cpp | 2 +- ospray/texture/Texture2D.h | 2 +- ospray/texture/Texture2D.ih | 2 +- ospray/texture/Texture2D.ispc | 2 +- ospray/texture/TextureParam.ih | 2 +- ospray/transferFunction/LinearTransferFunction.cpp | 2 +- ospray/transferFunction/LinearTransferFunction.h | 2 +- ospray/transferFunction/LinearTransferFunction.ih | 2 +- ospray/transferFunction/LinearTransferFunction.ispc | 2 +- ospray/transferFunction/TransferFunction.cpp | 2 +- ospray/transferFunction/TransferFunction.h | 2 +- ospray/transferFunction/TransferFunction.ih | 2 +- ospray/transferFunction/TransferFunction.ispc | 2 +- ospray/version.h.in | 2 +- ospray/volume/Volume.cpp | 2 +- ospray/volume/Volume.h | 2 +- ospray/volume/Volume.ih | 2 +- ospray/volume/Volume.ispc | 2 +- ospray/volume/amr/AMR.ih | 2 +- ospray/volume/amr/AMRAccel.cpp | 2 +- ospray/volume/amr/AMRAccel.h | 2 +- ospray/volume/amr/AMRData.cpp | 2 +- ospray/volume/amr/AMRData.h | 2 +- ospray/volume/amr/AMRVolume.cpp | 2 +- ospray/volume/amr/AMRVolume.h | 2 +- ospray/volume/amr/AMRVolume.ih | 2 +- ospray/volume/amr/AMRVolume.ispc | 2 +- ospray/volume/amr/CellRef.ih | 2 +- ospray/volume/amr/CellRef.ispc | 2 +- ospray/volume/amr/DualCell.ih | 2 +- ospray/volume/amr/DualCell.ispc | 2 +- ospray/volume/amr/FindStack.ih | 2 +- ospray/volume/amr/KDTree.ih | 2 +- ospray/volume/amr/method_current.ispc | 2 +- ospray/volume/amr/method_finest.ispc | 2 +- ospray/volume/amr/method_octant.ispc | 2 +- ospray/volume/amr/range.ih | 2 +- ospray/volume/structured/GridAccelerator.ih | 2 +- ospray/volume/structured/GridAccelerator.ispc | 2 +- ospray/volume/structured/StructuredVolume.cpp | 2 +- ospray/volume/structured/StructuredVolume.h | 2 +- ospray/volume/structured/StructuredVolume.ih | 2 +- ospray/volume/structured/StructuredVolume.ispc | 2 +- ospray/volume/structured/bricked/BlockBrickedVolume.cpp | 2 +- ospray/volume/structured/bricked/BlockBrickedVolume.h | 2 +- ospray/volume/structured/bricked/BlockBrickedVolume.ih | 2 +- ospray/volume/structured/bricked/BlockBrickedVolume.ispc | 2 +- ospray/volume/structured/bricked/GhostBlockBrickedVolume.cpp | 2 +- ospray/volume/structured/bricked/GhostBlockBrickedVolume.h | 2 +- ospray/volume/structured/bricked/GhostBlockBrickedVolume.ih | 2 +- ospray/volume/structured/bricked/GhostBlockBrickedVolume.ispc | 2 +- ospray/volume/structured/shared/SharedStructuredVolume.cpp | 2 +- ospray/volume/structured/shared/SharedStructuredVolume.h | 2 +- ospray/volume/structured/shared/SharedStructuredVolume.ih | 2 +- ospray/volume/structured/shared/SharedStructuredVolume.ispc | 2 +- ospray/volume/unstructured/MinMaxBVH2.cpp | 2 +- ospray/volume/unstructured/MinMaxBVH2.h | 2 +- ospray/volume/unstructured/MinMaxBVH2.ih | 2 +- ospray/volume/unstructured/MinMaxBVH2.ispc | 2 +- ospray/volume/unstructured/tetrahedral/TetrahedralVolume.cpp | 2 +- ospray/volume/unstructured/tetrahedral/TetrahedralVolume.h | 2 +- ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ih | 2 +- ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ispc | 2 +- 504 files changed, 504 insertions(+), 504 deletions(-) diff --git a/apps/CMakeLists.txt b/apps/CMakeLists.txt index 926adec9c5..38e15012e5 100644 --- a/apps/CMakeLists.txt +++ b/apps/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/bench/CMakeLists.txt b/apps/bench/CMakeLists.txt index 24e4b6d718..e48c18edc0 100644 --- a/apps/bench/CMakeLists.txt +++ b/apps/bench/CMakeLists.txt @@ -1,5 +1,5 @@ # ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/bench/bench.cpp b/apps/bench/bench.cpp index 473d7e14b6..c07c985f3c 100644 --- a/apps/bench/bench.cpp +++ b/apps/bench/bench.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2017 Intel Corporation // +// Copyright 2016-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/CMakeLists.txt b/apps/common/sg/CMakeLists.txt index add7409c1a..a233858e4d 100644 --- a/apps/common/sg/CMakeLists.txt +++ b/apps/common/sg/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/common/sg/Renderer.cpp b/apps/common/sg/Renderer.cpp index 48b80f8fdf..44ebb68c44 100644 --- a/apps/common/sg/Renderer.cpp +++ b/apps/common/sg/Renderer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/Renderer.h b/apps/common/sg/Renderer.h index 92f008f2df..30fb77eba4 100644 --- a/apps/common/sg/Renderer.h +++ b/apps/common/sg/Renderer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/SceneGraph.cpp b/apps/common/sg/SceneGraph.cpp index f3ba9e6963..2997defcde 100644 --- a/apps/common/sg/SceneGraph.cpp +++ b/apps/common/sg/SceneGraph.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/SceneGraph.h b/apps/common/sg/SceneGraph.h index e5b07563f4..3326f37f69 100644 --- a/apps/common/sg/SceneGraph.h +++ b/apps/common/sg/SceneGraph.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/camera/Camera.h b/apps/common/sg/camera/Camera.h index 74d46aeb27..e7e82e218c 100644 --- a/apps/common/sg/camera/Camera.h +++ b/apps/common/sg/camera/Camera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/camera/OrthographicCamera.cpp b/apps/common/sg/camera/OrthographicCamera.cpp index eab82827ba..9969c3d04e 100644 --- a/apps/common/sg/camera/OrthographicCamera.cpp +++ b/apps/common/sg/camera/OrthographicCamera.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/camera/OrthographicCamera.h b/apps/common/sg/camera/OrthographicCamera.h index b087cd6de9..cff68f8395 100644 --- a/apps/common/sg/camera/OrthographicCamera.h +++ b/apps/common/sg/camera/OrthographicCamera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/camera/PanoramicCamera.cpp b/apps/common/sg/camera/PanoramicCamera.cpp index c1fb9c72f4..5ea0400e7e 100644 --- a/apps/common/sg/camera/PanoramicCamera.cpp +++ b/apps/common/sg/camera/PanoramicCamera.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/camera/PanoramicCamera.h b/apps/common/sg/camera/PanoramicCamera.h index 61be6de2ce..2c17708e3a 100644 --- a/apps/common/sg/camera/PanoramicCamera.h +++ b/apps/common/sg/camera/PanoramicCamera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/camera/PerspectiveCamera.cpp b/apps/common/sg/camera/PerspectiveCamera.cpp index d8d7ffc797..a2ae18b383 100644 --- a/apps/common/sg/camera/PerspectiveCamera.cpp +++ b/apps/common/sg/camera/PerspectiveCamera.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/camera/PerspectiveCamera.h b/apps/common/sg/camera/PerspectiveCamera.h index 071c70397b..4d63946040 100644 --- a/apps/common/sg/camera/PerspectiveCamera.h +++ b/apps/common/sg/camera/PerspectiveCamera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/AnimationController.cpp b/apps/common/sg/common/AnimationController.cpp index baa4c0af2f..9f2db90530 100644 --- a/apps/common/sg/common/AnimationController.cpp +++ b/apps/common/sg/common/AnimationController.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Animator.cpp b/apps/common/sg/common/Animator.cpp index 547d317c20..c24a8ed44e 100644 --- a/apps/common/sg/common/Animator.cpp +++ b/apps/common/sg/common/Animator.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Common.cpp b/apps/common/sg/common/Common.cpp index abeeaba036..2c46f8999b 100644 --- a/apps/common/sg/common/Common.cpp +++ b/apps/common/sg/common/Common.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Common.h b/apps/common/sg/common/Common.h index 0665e3276b..1b88760a4a 100644 --- a/apps/common/sg/common/Common.h +++ b/apps/common/sg/common/Common.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Data.cpp b/apps/common/sg/common/Data.cpp index cfbfa3e384..6ca76f271c 100644 --- a/apps/common/sg/common/Data.cpp +++ b/apps/common/sg/common/Data.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Data.h b/apps/common/sg/common/Data.h index 60df57217a..1e3d2b0ee6 100644 --- a/apps/common/sg/common/Data.h +++ b/apps/common/sg/common/Data.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/FrameBuffer.cpp b/apps/common/sg/common/FrameBuffer.cpp index f5cf2f22c2..489d87911b 100644 --- a/apps/common/sg/common/FrameBuffer.cpp +++ b/apps/common/sg/common/FrameBuffer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/FrameBuffer.h b/apps/common/sg/common/FrameBuffer.h index 66ff37743a..a9b5f11f73 100644 --- a/apps/common/sg/common/FrameBuffer.h +++ b/apps/common/sg/common/FrameBuffer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Light.cpp b/apps/common/sg/common/Light.cpp index cf94fa55b8..3821b8fce6 100644 --- a/apps/common/sg/common/Light.cpp +++ b/apps/common/sg/common/Light.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Material.cpp b/apps/common/sg/common/Material.cpp index e2518c4341..ea281dd94d 100644 --- a/apps/common/sg/common/Material.cpp +++ b/apps/common/sg/common/Material.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Material.h b/apps/common/sg/common/Material.h index 1788f2e28e..8aa88e67d3 100644 --- a/apps/common/sg/common/Material.h +++ b/apps/common/sg/common/Material.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Node.cpp b/apps/common/sg/common/Node.cpp index 60eb163a79..7a4a456189 100644 --- a/apps/common/sg/common/Node.cpp +++ b/apps/common/sg/common/Node.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Node.h b/apps/common/sg/common/Node.h index f384999329..20fa517819 100644 --- a/apps/common/sg/common/Node.h +++ b/apps/common/sg/common/Node.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/NodeList.h b/apps/common/sg/common/NodeList.h index 76d6045822..63356d034f 100644 --- a/apps/common/sg/common/NodeList.h +++ b/apps/common/sg/common/NodeList.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/RenderContext.h b/apps/common/sg/common/RenderContext.h index 8cd60931f4..b18df37fb2 100644 --- a/apps/common/sg/common/RenderContext.h +++ b/apps/common/sg/common/RenderContext.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Renderable.cpp b/apps/common/sg/common/Renderable.cpp index c65c292e4a..889fceeede 100644 --- a/apps/common/sg/common/Renderable.cpp +++ b/apps/common/sg/common/Renderable.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Renderable.h b/apps/common/sg/common/Renderable.h index a6df61f959..2628c8cb90 100644 --- a/apps/common/sg/common/Renderable.h +++ b/apps/common/sg/common/Renderable.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/RuntimeError.h b/apps/common/sg/common/RuntimeError.h index 8119624623..4c0464e8c7 100644 --- a/apps/common/sg/common/RuntimeError.h +++ b/apps/common/sg/common/RuntimeError.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Selector.cpp b/apps/common/sg/common/Selector.cpp index 4190870f26..d3d337553b 100644 --- a/apps/common/sg/common/Selector.cpp +++ b/apps/common/sg/common/Selector.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Serialization.h b/apps/common/sg/common/Serialization.h index 6f396bfc65..db95017e30 100644 --- a/apps/common/sg/common/Serialization.h +++ b/apps/common/sg/common/Serialization.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Texture2D.cpp b/apps/common/sg/common/Texture2D.cpp index 4b1363053c..b485f04a07 100644 --- a/apps/common/sg/common/Texture2D.cpp +++ b/apps/common/sg/common/Texture2D.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Texture2D.h b/apps/common/sg/common/Texture2D.h index fb4054a6bd..fdd40ea0ba 100644 --- a/apps/common/sg/common/Texture2D.h +++ b/apps/common/sg/common/Texture2D.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/TimeStamp.cpp b/apps/common/sg/common/TimeStamp.cpp index 58a32b2c15..dee7ca4032 100644 --- a/apps/common/sg/common/TimeStamp.cpp +++ b/apps/common/sg/common/TimeStamp.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/TimeStamp.h b/apps/common/sg/common/TimeStamp.h index 0b0e654544..1dc36640c0 100644 --- a/apps/common/sg/common/TimeStamp.h +++ b/apps/common/sg/common/TimeStamp.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Transform.cpp b/apps/common/sg/common/Transform.cpp index 7529c71638..d3843936ff 100644 --- a/apps/common/sg/common/Transform.cpp +++ b/apps/common/sg/common/Transform.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/Transform.h b/apps/common/sg/common/Transform.h index 2fd2f07b67..3eba804dd9 100644 --- a/apps/common/sg/common/Transform.h +++ b/apps/common/sg/common/Transform.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/World.cpp b/apps/common/sg/common/World.cpp index 195ad6558b..14c6c40f3a 100644 --- a/apps/common/sg/common/World.cpp +++ b/apps/common/sg/common/World.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/common/World.h b/apps/common/sg/common/World.h index 782936281d..b5819779ed 100644 --- a/apps/common/sg/common/World.h +++ b/apps/common/sg/common/World.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/geometry/Geometry.cpp b/apps/common/sg/geometry/Geometry.cpp index d72077f3e3..fc23d5888e 100644 --- a/apps/common/sg/geometry/Geometry.cpp +++ b/apps/common/sg/geometry/Geometry.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/geometry/Geometry.h b/apps/common/sg/geometry/Geometry.h index 1d3e4b246e..f421618553 100644 --- a/apps/common/sg/geometry/Geometry.h +++ b/apps/common/sg/geometry/Geometry.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/geometry/Spheres.cpp b/apps/common/sg/geometry/Spheres.cpp index aea89e889d..312b6cacc8 100644 --- a/apps/common/sg/geometry/Spheres.cpp +++ b/apps/common/sg/geometry/Spheres.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/geometry/Spheres.h b/apps/common/sg/geometry/Spheres.h index a0aa3a75f3..d87add0dd4 100644 --- a/apps/common/sg/geometry/Spheres.h +++ b/apps/common/sg/geometry/Spheres.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/geometry/StreamLines.cpp b/apps/common/sg/geometry/StreamLines.cpp index ac5dc03281..57e8110f18 100644 --- a/apps/common/sg/geometry/StreamLines.cpp +++ b/apps/common/sg/geometry/StreamLines.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/geometry/StreamLines.h b/apps/common/sg/geometry/StreamLines.h index 63ad8dfc39..add0f1bdd6 100644 --- a/apps/common/sg/geometry/StreamLines.h +++ b/apps/common/sg/geometry/StreamLines.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/geometry/TriangleMesh.cpp b/apps/common/sg/geometry/TriangleMesh.cpp index 4cd1fe459b..46b5519e22 100644 --- a/apps/common/sg/geometry/TriangleMesh.cpp +++ b/apps/common/sg/geometry/TriangleMesh.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/geometry/TriangleMesh.h b/apps/common/sg/geometry/TriangleMesh.h index 21673d509f..a483f7586d 100644 --- a/apps/common/sg/geometry/TriangleMesh.h +++ b/apps/common/sg/geometry/TriangleMesh.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/Importer.cpp b/apps/common/sg/importer/Importer.cpp index 101fed57c5..471f3188a9 100644 --- a/apps/common/sg/importer/Importer.cpp +++ b/apps/common/sg/importer/Importer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/Importer.h b/apps/common/sg/importer/Importer.h index 185f07f38d..a5e73920d9 100644 --- a/apps/common/sg/importer/Importer.h +++ b/apps/common/sg/importer/Importer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/detail_xyz/Model.cpp b/apps/common/sg/importer/detail_xyz/Model.cpp index 7ecc5ebbc1..516e393977 100644 --- a/apps/common/sg/importer/detail_xyz/Model.cpp +++ b/apps/common/sg/importer/detail_xyz/Model.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/detail_xyz/Model.h b/apps/common/sg/importer/detail_xyz/Model.h index 033fb5683c..594f8f28c7 100644 --- a/apps/common/sg/importer/detail_xyz/Model.h +++ b/apps/common/sg/importer/detail_xyz/Model.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importOBJ.cpp b/apps/common/sg/importer/importOBJ.cpp index 8ccee71cb7..1ee14ffb89 100644 --- a/apps/common/sg/importer/importOBJ.cpp +++ b/apps/common/sg/importer/importOBJ.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importOSP.cpp b/apps/common/sg/importer/importOSP.cpp index 0f2671c852..31a8733be7 100644 --- a/apps/common/sg/importer/importOSP.cpp +++ b/apps/common/sg/importer/importOSP.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importOSPModel.cpp b/apps/common/sg/importer/importOSPModel.cpp index aacf713815..b7fdfbe7fe 100644 --- a/apps/common/sg/importer/importOSPModel.cpp +++ b/apps/common/sg/importer/importOSPModel.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importOSPSG.cpp b/apps/common/sg/importer/importOSPSG.cpp index 59d9eb3bfc..cdef5e5f04 100644 --- a/apps/common/sg/importer/importOSPSG.cpp +++ b/apps/common/sg/importer/importOSPSG.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importOSX.cpp b/apps/common/sg/importer/importOSX.cpp index f5207462b6..6c15b59401 100644 --- a/apps/common/sg/importer/importOSX.cpp +++ b/apps/common/sg/importer/importOSX.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importPLY.cpp b/apps/common/sg/importer/importPLY.cpp index 1319d1d50b..b985f5df73 100644 --- a/apps/common/sg/importer/importPLY.cpp +++ b/apps/common/sg/importer/importPLY.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importPoints.cpp b/apps/common/sg/importer/importPoints.cpp index 3e9cadf386..9e6645ef3e 100644 --- a/apps/common/sg/importer/importPoints.cpp +++ b/apps/common/sg/importer/importPoints.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importRIVL.cpp b/apps/common/sg/importer/importRIVL.cpp index bf526eb6ec..5048ca7138 100644 --- a/apps/common/sg/importer/importRIVL.cpp +++ b/apps/common/sg/importer/importRIVL.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importTetVolume.cpp b/apps/common/sg/importer/importTetVolume.cpp index c7359ea7ae..a388f3bcfa 100644 --- a/apps/common/sg/importer/importTetVolume.cpp +++ b/apps/common/sg/importer/importTetVolume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/importer/importXYZ.cpp b/apps/common/sg/importer/importXYZ.cpp index bb6f1aab8f..408cccb953 100644 --- a/apps/common/sg/importer/importXYZ.cpp +++ b/apps/common/sg/importer/importXYZ.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/module/Module.cpp b/apps/common/sg/module/Module.cpp index d711928265..874f91ea1b 100644 --- a/apps/common/sg/module/Module.cpp +++ b/apps/common/sg/module/Module.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/module/Module.h b/apps/common/sg/module/Module.h index 5518d79bf4..57638c06cb 100644 --- a/apps/common/sg/module/Module.h +++ b/apps/common/sg/module/Module.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/transferFunction/TransferFunction.cpp b/apps/common/sg/transferFunction/TransferFunction.cpp index 41c3513cb7..e9f8fd2492 100644 --- a/apps/common/sg/transferFunction/TransferFunction.cpp +++ b/apps/common/sg/transferFunction/TransferFunction.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/transferFunction/TransferFunction.h b/apps/common/sg/transferFunction/TransferFunction.h index 568f8cd9a5..cd3cf1610c 100644 --- a/apps/common/sg/transferFunction/TransferFunction.h +++ b/apps/common/sg/transferFunction/TransferFunction.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/volume/TetVolume.cpp b/apps/common/sg/volume/TetVolume.cpp index 3e6ca3ccc2..30e58cbf2b 100644 --- a/apps/common/sg/volume/TetVolume.cpp +++ b/apps/common/sg/volume/TetVolume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/volume/TetVolume.h b/apps/common/sg/volume/TetVolume.h index dd3f9532d7..6f32fbfa6e 100644 --- a/apps/common/sg/volume/TetVolume.h +++ b/apps/common/sg/volume/TetVolume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/volume/Volume.cpp b/apps/common/sg/volume/Volume.cpp index 7d65a42632..0deb0751e4 100644 --- a/apps/common/sg/volume/Volume.cpp +++ b/apps/common/sg/volume/Volume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/sg/volume/Volume.h b/apps/common/sg/volume/Volume.h index 4c6368e475..869f687801 100644 --- a/apps/common/sg/volume/Volume.h +++ b/apps/common/sg/volume/Volume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/tfn_lib/CMakeLists.txt b/apps/common/tfn_lib/CMakeLists.txt index 24a1697b8b..5b9af80323 100644 --- a/apps/common/tfn_lib/CMakeLists.txt +++ b/apps/common/tfn_lib/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/common/tfn_lib/convertParaViewTfcn.cpp b/apps/common/tfn_lib/convertParaViewTfcn.cpp index fe710cd4af..bbc87d31fe 100644 --- a/apps/common/tfn_lib/convertParaViewTfcn.cpp +++ b/apps/common/tfn_lib/convertParaViewTfcn.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2017 Intel Corporation // +// Copyright 2016-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/tfn_lib/tfn_lib.cpp b/apps/common/tfn_lib/tfn_lib.cpp index efa5396d76..996dedd3f1 100644 --- a/apps/common/tfn_lib/tfn_lib.cpp +++ b/apps/common/tfn_lib/tfn_lib.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/tfn_lib/tfn_lib.h b/apps/common/tfn_lib/tfn_lib.h index 145212807e..60f1f56239 100644 --- a/apps/common/tfn_lib/tfn_lib.h +++ b/apps/common/tfn_lib/tfn_lib.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/xml/CMakeLists.txt b/apps/common/xml/CMakeLists.txt index 2bc4db8f77..48b32fc7e6 100644 --- a/apps/common/xml/CMakeLists.txt +++ b/apps/common/xml/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/common/xml/XML.cpp b/apps/common/xml/XML.cpp index 2ef9ebc83c..685e0395c9 100644 --- a/apps/common/xml/XML.cpp +++ b/apps/common/xml/XML.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/common/xml/XML.h b/apps/common/xml/XML.h index 48d54543db..da4bf6f7ad 100644 --- a/apps/common/xml/XML.h +++ b/apps/common/xml/XML.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/exampleViewer/CMakeLists.txt b/apps/exampleViewer/CMakeLists.txt index 96c910bc72..ef89ce9e6a 100644 --- a/apps/exampleViewer/CMakeLists.txt +++ b/apps/exampleViewer/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/exampleViewer/common/CMakeLists.txt b/apps/exampleViewer/common/CMakeLists.txt index bfa74f9c58..ec804a6b35 100644 --- a/apps/exampleViewer/common/CMakeLists.txt +++ b/apps/exampleViewer/common/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/exampleViewer/ospExampleViewer.cpp b/apps/exampleViewer/ospExampleViewer.cpp index c3c2ead09a..c64c3cc625 100644 --- a/apps/exampleViewer/ospExampleViewer.cpp +++ b/apps/exampleViewer/ospExampleViewer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/exampleViewer/widgets/CMakeLists.txt b/apps/exampleViewer/widgets/CMakeLists.txt index 206b3088a8..4296ab5fbd 100644 --- a/apps/exampleViewer/widgets/CMakeLists.txt +++ b/apps/exampleViewer/widgets/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/ospTutorial.c b/apps/ospTutorial.c index 1352cb4be7..f321aee342 100644 --- a/apps/ospTutorial.c +++ b/apps/ospTutorial.c @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/ospTutorial.cpp b/apps/ospTutorial.cpp index 851cf08b9f..263e5a5775 100644 --- a/apps/ospTutorial.cpp +++ b/apps/ospTutorial.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/apps/utility/CMakeLists.txt b/apps/utility/CMakeLists.txt index df710b3ab0..52718c9661 100644 --- a/apps/utility/CMakeLists.txt +++ b/apps/utility/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/apps/utility/raw2amr.cpp b/apps/utility/raw2amr.cpp index f1a4b690d3..4f140d9689 100644 --- a/apps/utility/raw2amr.cpp +++ b/apps/utility/raw2amr.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/cmake/configure_embree.cmake b/cmake/configure_embree.cmake index c15a45fbd6..f324bfdb39 100644 --- a/cmake/configure_embree.cmake +++ b/cmake/configure_embree.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/cmake/doxygen.cmake b/cmake/doxygen.cmake index fadbb85819..dd855751d6 100644 --- a/cmake/doxygen.cmake +++ b/cmake/doxygen.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/cmake/ospray_cmake_config.cmake b/cmake/ospray_cmake_config.cmake index 36e6706e97..10ff209761 100644 --- a/cmake/ospray_cmake_config.cmake +++ b/cmake/ospray_cmake_config.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/cmake/ospray_cmake_config/osprayConfig.cmake.in b/cmake/ospray_cmake_config/osprayConfig.cmake.in index 51ff446307..e1c3b352b0 100644 --- a/cmake/ospray_cmake_config/osprayConfig.cmake.in +++ b/cmake/ospray_cmake_config/osprayConfig.cmake.in @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/cmake/ospray_cmake_config/osprayConfigVersion.cmake.in b/cmake/ospray_cmake_config/osprayConfigVersion.cmake.in index 8ee6aea601..f4f05c267a 100644 --- a/cmake/ospray_cmake_config/osprayConfigVersion.cmake.in +++ b/cmake/ospray_cmake_config/osprayConfigVersion.cmake.in @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/cmake/ospray_cmake_config/osprayUse.cmake.in b/cmake/ospray_cmake_config/osprayUse.cmake.in index 9ad3d6efb4..7b0c9b8732 100644 --- a/cmake/ospray_cmake_config/osprayUse.cmake.in +++ b/cmake/ospray_cmake_config/osprayUse.cmake.in @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/cmake/ospray_macros.cmake b/cmake/ospray_macros.cmake index c70b9ee850..a020b76b2d 100644 --- a/cmake/ospray_macros.cmake +++ b/cmake/ospray_macros.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/cmake/ospray_options.cmake b/cmake/ospray_options.cmake index 107e2dbbd6..c7562e9eca 100644 --- a/cmake/ospray_options.cmake +++ b/cmake/ospray_options.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/cmake/package.cmake b/cmake/package.cmake index 997338d825..020b102f8f 100644 --- a/cmake/package.cmake +++ b/cmake/package.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/configure.cmake b/components/configure.cmake index 1b098c8210..d4c9f91b37 100644 --- a/components/configure.cmake +++ b/components/configure.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/mpiCommon/CMakeLists.txt b/components/mpiCommon/CMakeLists.txt index 7628b12a31..e25674ba2a 100644 --- a/components/mpiCommon/CMakeLists.txt +++ b/components/mpiCommon/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/mpiCommon/MPIBcastFabric.cpp b/components/mpiCommon/MPIBcastFabric.cpp index eabd877e91..92de61fc0c 100644 --- a/components/mpiCommon/MPIBcastFabric.cpp +++ b/components/mpiCommon/MPIBcastFabric.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/mpiCommon/MPIBcastFabric.h b/components/mpiCommon/MPIBcastFabric.h index fe1628f248..c22398d5cb 100644 --- a/components/mpiCommon/MPIBcastFabric.h +++ b/components/mpiCommon/MPIBcastFabric.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/mpiCommon/MPICommon.cpp b/components/mpiCommon/MPICommon.cpp index fcb331e23b..1b0a25fac0 100644 --- a/components/mpiCommon/MPICommon.cpp +++ b/components/mpiCommon/MPICommon.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/mpiCommon/MPICommon.h b/components/mpiCommon/MPICommon.h index 36290e283c..39ba16ab18 100644 --- a/components/mpiCommon/MPICommon.h +++ b/components/mpiCommon/MPICommon.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/mpiCommon/include.cmake b/components/mpiCommon/include.cmake index b26ad48f36..b02c9475f0 100644 --- a/components/mpiCommon/include.cmake +++ b/components/mpiCommon/include.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/mpiMessageLayer/CMakeLists.txt b/components/mpiMessageLayer/CMakeLists.txt index 201ec01c3f..5b0ca028aa 100644 --- a/components/mpiMessageLayer/CMakeLists.txt +++ b/components/mpiMessageLayer/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/mpiMessageLayer/include.cmake b/components/mpiMessageLayer/include.cmake index 42c70435f0..5a8e72d828 100644 --- a/components/mpiMessageLayer/include.cmake +++ b/components/mpiMessageLayer/include.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/mpiService/CMakeLists.txt b/components/mpiService/CMakeLists.txt index 5a476cd9af..1dfa2203f5 100644 --- a/components/mpiService/CMakeLists.txt +++ b/components/mpiService/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/mpiService/MPIService.cpp b/components/mpiService/MPIService.cpp index 513e513a39..6701c61692 100644 --- a/components/mpiService/MPIService.cpp +++ b/components/mpiService/MPIService.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/mpiService/MPIService.h b/components/mpiService/MPIService.h index ffdb419d20..dddd779119 100644 --- a/components/mpiService/MPIService.h +++ b/components/mpiService/MPIService.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/mpiService/include.cmake b/components/mpiService/include.cmake index b5a996c59c..4252d85dd4 100644 --- a/components/mpiService/include.cmake +++ b/components/mpiService/include.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/AffineSpace.h b/components/ospcommon/AffineSpace.h index c4d56969a3..38b64a4f7d 100644 --- a/components/ospcommon/AffineSpace.h +++ b/components/ospcommon/AffineSpace.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/AsyncLoop.h b/components/ospcommon/AsyncLoop.h index b2612f7102..f9c4153776 100644 --- a/components/ospcommon/AsyncLoop.h +++ b/components/ospcommon/AsyncLoop.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/CMakeLists.txt b/components/ospcommon/CMakeLists.txt index c534102e15..23e4e2039f 100644 --- a/components/ospcommon/CMakeLists.txt +++ b/components/ospcommon/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/FileName.cpp b/components/ospcommon/FileName.cpp index 9e3715cfca..eb25cd634c 100644 --- a/components/ospcommon/FileName.cpp +++ b/components/ospcommon/FileName.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/FileName.h b/components/ospcommon/FileName.h index 47deb8c31e..24e6ffec24 100644 --- a/components/ospcommon/FileName.h +++ b/components/ospcommon/FileName.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/LinearSpace.h b/components/ospcommon/LinearSpace.h index df24e7a235..ee0d621a97 100644 --- a/components/ospcommon/LinearSpace.h +++ b/components/ospcommon/LinearSpace.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/Quaternion.h b/components/ospcommon/Quaternion.h index fa383258aa..818f138d13 100644 --- a/components/ospcommon/Quaternion.h +++ b/components/ospcommon/Quaternion.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/RefCount.h b/components/ospcommon/RefCount.h index 222d0e7fe5..d7fbb30200 100644 --- a/components/ospcommon/RefCount.h +++ b/components/ospcommon/RefCount.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/TypeTraits.h b/components/ospcommon/TypeTraits.h index 46f88bd3eb..b3fea6eb40 100644 --- a/components/ospcommon/TypeTraits.h +++ b/components/ospcommon/TypeTraits.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/array3D/Array3D.cpp b/components/ospcommon/array3D/Array3D.cpp index 6ca01488a2..9fe64ae032 100644 --- a/components/ospcommon/array3D/Array3D.cpp +++ b/components/ospcommon/array3D/Array3D.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/array3D/Array3D.h b/components/ospcommon/array3D/Array3D.h index 28fcfb14ef..fd553e2852 100644 --- a/components/ospcommon/array3D/Array3D.h +++ b/components/ospcommon/array3D/Array3D.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/array3D/for_each.h b/components/ospcommon/array3D/for_each.h index 82ab4a83bf..b5e250a8d7 100644 --- a/components/ospcommon/array3D/for_each.h +++ b/components/ospcommon/array3D/for_each.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/box.h b/components/ospcommon/box.h index 7ee963d944..79b3b03554 100644 --- a/components/ospcommon/box.h +++ b/components/ospcommon/box.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/cmake/FindGLFW.cmake b/components/ospcommon/cmake/FindGLFW.cmake index 8777f5ca23..78d59a94b4 100644 --- a/components/ospcommon/cmake/FindGLFW.cmake +++ b/components/ospcommon/cmake/FindGLFW.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/FindOpenImageIO.cmake b/components/ospcommon/cmake/FindOpenImageIO.cmake index 86bc9cad59..72e5b09f65 100644 --- a/components/ospcommon/cmake/FindOpenImageIO.cmake +++ b/components/ospcommon/cmake/FindOpenImageIO.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/FindTBB.cmake b/components/ospcommon/cmake/FindTBB.cmake index 839f82bceb..c014dd55d2 100644 --- a/components/ospcommon/cmake/FindTBB.cmake +++ b/components/ospcommon/cmake/FindTBB.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/Findlibdispatch.cmake b/components/ospcommon/cmake/Findlibdispatch.cmake index 242940a8ca..a0e58fc5e1 100644 --- a/components/ospcommon/cmake/Findlibdispatch.cmake +++ b/components/ospcommon/cmake/Findlibdispatch.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/clang.cmake b/components/ospcommon/cmake/clang.cmake index fa129329fd..abb96b090d 100644 --- a/components/ospcommon/cmake/clang.cmake +++ b/components/ospcommon/cmake/clang.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/gcc.cmake b/components/ospcommon/cmake/gcc.cmake index 7613bb00fb..4486c1c17f 100644 --- a/components/ospcommon/cmake/gcc.cmake +++ b/components/ospcommon/cmake/gcc.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/icc.cmake b/components/ospcommon/cmake/icc.cmake index b1998653ee..5a12995e80 100644 --- a/components/ospcommon/cmake/icc.cmake +++ b/components/ospcommon/cmake/icc.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/ispc.cmake b/components/ospcommon/cmake/ispc.cmake index 41e45e6c27..dd5e6073e3 100644 --- a/components/ospcommon/cmake/ispc.cmake +++ b/components/ospcommon/cmake/ispc.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/macros.cmake b/components/ospcommon/cmake/macros.cmake index 711171afce..73e32d7275 100644 --- a/components/ospcommon/cmake/macros.cmake +++ b/components/ospcommon/cmake/macros.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/cmake/msvc.cmake b/components/ospcommon/cmake/msvc.cmake index 1fdbb35dc0..e1077fd7e8 100644 --- a/components/ospcommon/cmake/msvc.cmake +++ b/components/ospcommon/cmake/msvc.cmake @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/components/ospcommon/common.cpp b/components/ospcommon/common.cpp index 19a0589c05..199713974c 100644 --- a/components/ospcommon/common.cpp +++ b/components/ospcommon/common.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/common.h b/components/ospcommon/common.h index 990ae8c45d..ba9d961ff6 100644 --- a/components/ospcommon/common.h +++ b/components/ospcommon/common.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/constants.h b/components/ospcommon/constants.h index 1538fe4b5a..a52878582d 100644 --- a/components/ospcommon/constants.h +++ b/components/ospcommon/constants.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/containers/TransactionalBuffer.h b/components/ospcommon/containers/TransactionalBuffer.h index c3dbbba2a5..bafed286ce 100644 --- a/components/ospcommon/containers/TransactionalBuffer.h +++ b/components/ospcommon/containers/TransactionalBuffer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/intrinsics.h b/components/ospcommon/intrinsics.h index a6500f333f..ab1f1e0211 100644 --- a/components/ospcommon/intrinsics.h +++ b/components/ospcommon/intrinsics.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/library.cpp b/components/ospcommon/library.cpp index 14a43251fe..cbb3837937 100644 --- a/components/ospcommon/library.cpp +++ b/components/ospcommon/library.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/library.h b/components/ospcommon/library.h index c63ddff9f9..58a9f5bc17 100644 --- a/components/ospcommon/library.h +++ b/components/ospcommon/library.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/malloc.cpp b/components/ospcommon/malloc.cpp index d128d615e4..079371da70 100644 --- a/components/ospcommon/malloc.cpp +++ b/components/ospcommon/malloc.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/malloc.h b/components/ospcommon/malloc.h index ee5d14e145..d76d838a4e 100644 --- a/components/ospcommon/malloc.h +++ b/components/ospcommon/malloc.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/math.h b/components/ospcommon/math.h index 7820214271..3298f061c7 100644 --- a/components/ospcommon/math.h +++ b/components/ospcommon/math.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/networking/BufferedDataStreaming.cpp b/components/ospcommon/networking/BufferedDataStreaming.cpp index 10c65588e9..8df34cfef3 100644 --- a/components/ospcommon/networking/BufferedDataStreaming.cpp +++ b/components/ospcommon/networking/BufferedDataStreaming.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/networking/BufferedDataStreaming.h b/components/ospcommon/networking/BufferedDataStreaming.h index 0de4db6eaa..7d9721c1a0 100644 --- a/components/ospcommon/networking/BufferedDataStreaming.h +++ b/components/ospcommon/networking/BufferedDataStreaming.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/networking/DataStreaming.h b/components/ospcommon/networking/DataStreaming.h index ac6068ee52..5869c81a5b 100644 --- a/components/ospcommon/networking/DataStreaming.h +++ b/components/ospcommon/networking/DataStreaming.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/networking/Fabric.h b/components/ospcommon/networking/Fabric.h index 641a1bbc22..9617ca9a70 100644 --- a/components/ospcommon/networking/Fabric.h +++ b/components/ospcommon/networking/Fabric.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/networking/Socket.cpp b/components/ospcommon/networking/Socket.cpp index dd8a3d9711..45e3246c4b 100644 --- a/components/ospcommon/networking/Socket.cpp +++ b/components/ospcommon/networking/Socket.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/networking/Socket.h b/components/ospcommon/networking/Socket.h index 4c22a6d267..4f7b97119b 100644 --- a/components/ospcommon/networking/Socket.h +++ b/components/ospcommon/networking/Socket.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/platform.h b/components/ospcommon/platform.h index bb4be799eb..309499038d 100644 --- a/components/ospcommon/platform.h +++ b/components/ospcommon/platform.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/range.h b/components/ospcommon/range.h index 285c10c453..a26ea87343 100644 --- a/components/ospcommon/range.h +++ b/components/ospcommon/range.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/sysinfo.cpp b/components/ospcommon/sysinfo.cpp index da7b86f41e..40c854eca4 100644 --- a/components/ospcommon/sysinfo.cpp +++ b/components/ospcommon/sysinfo.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/sysinfo.h b/components/ospcommon/sysinfo.h index c744273984..f0634f9bba 100644 --- a/components/ospcommon/sysinfo.h +++ b/components/ospcommon/sysinfo.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/async.h b/components/ospcommon/tasking/async.h index a7df740b73..9753ca8cbd 100644 --- a/components/ospcommon/tasking/async.h +++ b/components/ospcommon/tasking/async.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/detail/TaskSys.cpp b/components/ospcommon/tasking/detail/TaskSys.cpp index 7ab0e444ca..0cb49736b4 100644 --- a/components/ospcommon/tasking/detail/TaskSys.cpp +++ b/components/ospcommon/tasking/detail/TaskSys.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/detail/TaskSys.h b/components/ospcommon/tasking/detail/TaskSys.h index 27889d82c8..24c7a8722d 100644 --- a/components/ospcommon/tasking/detail/TaskSys.h +++ b/components/ospcommon/tasking/detail/TaskSys.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/detail/parallel_for.inl b/components/ospcommon/tasking/detail/parallel_for.inl index 51803b4353..6696467f5f 100644 --- a/components/ospcommon/tasking/detail/parallel_for.inl +++ b/components/ospcommon/tasking/detail/parallel_for.inl @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/detail/schedule.inl b/components/ospcommon/tasking/detail/schedule.inl index 08548c365f..c075908c58 100644 --- a/components/ospcommon/tasking/detail/schedule.inl +++ b/components/ospcommon/tasking/detail/schedule.inl @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/detail/tasking_system_handle.cpp b/components/ospcommon/tasking/detail/tasking_system_handle.cpp index 5daad2725f..29762770d7 100644 --- a/components/ospcommon/tasking/detail/tasking_system_handle.cpp +++ b/components/ospcommon/tasking/detail/tasking_system_handle.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/parallel_for.h b/components/ospcommon/tasking/parallel_for.h index 22dce96a3d..1bac5d11f3 100644 --- a/components/ospcommon/tasking/parallel_for.h +++ b/components/ospcommon/tasking/parallel_for.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/schedule.h b/components/ospcommon/tasking/schedule.h index c4c0f91ce4..e3566238fb 100644 --- a/components/ospcommon/tasking/schedule.h +++ b/components/ospcommon/tasking/schedule.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/tasking/tasking_system_handle.h b/components/ospcommon/tasking/tasking_system_handle.h index a73a6e46ab..109849d029 100644 --- a/components/ospcommon/tasking/tasking_system_handle.h +++ b/components/ospcommon/tasking/tasking_system_handle.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/thread.cpp b/components/ospcommon/thread.cpp index ca76b99ed4..19b9750a5a 100644 --- a/components/ospcommon/thread.cpp +++ b/components/ospcommon/thread.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/thread.h b/components/ospcommon/thread.h index 9ebcacf1af..cfa01fbfeb 100644 --- a/components/ospcommon/thread.h +++ b/components/ospcommon/thread.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/Any.h b/components/ospcommon/utility/Any.h index 7617264574..a2dbb79b21 100644 --- a/components/ospcommon/utility/Any.h +++ b/components/ospcommon/utility/Any.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/ArrayView.h b/components/ospcommon/utility/ArrayView.h index 3e76f5702b..b2e80b101f 100644 --- a/components/ospcommon/utility/ArrayView.h +++ b/components/ospcommon/utility/ArrayView.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/CodeTimer.h b/components/ospcommon/utility/CodeTimer.h index 20c3eb356c..16aa57f9aa 100644 --- a/components/ospcommon/utility/CodeTimer.h +++ b/components/ospcommon/utility/CodeTimer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/DeletedUniquePtr.h b/components/ospcommon/utility/DeletedUniquePtr.h index 9076db76a7..121c04b9bf 100644 --- a/components/ospcommon/utility/DeletedUniquePtr.h +++ b/components/ospcommon/utility/DeletedUniquePtr.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/DoubleBufferedValue.h b/components/ospcommon/utility/DoubleBufferedValue.h index e5dfc3ae11..176a3bbbbd 100644 --- a/components/ospcommon/utility/DoubleBufferedValue.h +++ b/components/ospcommon/utility/DoubleBufferedValue.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/OnScopeExit.h b/components/ospcommon/utility/OnScopeExit.h index 2d8790df1d..c9d5bde573 100644 --- a/components/ospcommon/utility/OnScopeExit.h +++ b/components/ospcommon/utility/OnScopeExit.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/Optional.h b/components/ospcommon/utility/Optional.h index fd603d25b3..918062ff72 100644 --- a/components/ospcommon/utility/Optional.h +++ b/components/ospcommon/utility/Optional.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/PseudoURL.cpp b/components/ospcommon/utility/PseudoURL.cpp index c5b6e10089..8872bf2a40 100644 --- a/components/ospcommon/utility/PseudoURL.cpp +++ b/components/ospcommon/utility/PseudoURL.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/PseudoURL.h b/components/ospcommon/utility/PseudoURL.h index dee479d9d2..fe8f90d92f 100644 --- a/components/ospcommon/utility/PseudoURL.h +++ b/components/ospcommon/utility/PseudoURL.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/utility/getEnvVar.h b/components/ospcommon/utility/getEnvVar.h index fc1ee661e4..8c5b192f43 100644 --- a/components/ospcommon/utility/getEnvVar.h +++ b/components/ospcommon/utility/getEnvVar.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/vec.cpp b/components/ospcommon/vec.cpp index be7c0b428c..b86887d3fd 100644 --- a/components/ospcommon/vec.cpp +++ b/components/ospcommon/vec.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/components/ospcommon/vec.h b/components/ospcommon/vec.h index 095d613c13..65ebd46991 100644 --- a/components/ospcommon/vec.h +++ b/components/ospcommon/vec.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt index 0b2248a422..d68752dbac 100644 --- a/modules/CMakeLists.txt +++ b/modules/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/modules/mpi/CMakeLists.txt b/modules/mpi/CMakeLists.txt index 54311fd155..b8b0640256 100644 --- a/modules/mpi/CMakeLists.txt +++ b/modules/mpi/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/modules/mpi/MPIDistributedDevice.cpp b/modules/mpi/MPIDistributedDevice.cpp index 9050da76ce..3b2dc02f0f 100644 --- a/modules/mpi/MPIDistributedDevice.cpp +++ b/modules/mpi/MPIDistributedDevice.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/MPIDistributedDevice.h b/modules/mpi/MPIDistributedDevice.h index e279894f15..e7d7876eb0 100644 --- a/modules/mpi/MPIDistributedDevice.h +++ b/modules/mpi/MPIDistributedDevice.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/MPIOffloadDevice.cpp b/modules/mpi/MPIOffloadDevice.cpp index 95f1d8d375..8fd8b73129 100644 --- a/modules/mpi/MPIOffloadDevice.cpp +++ b/modules/mpi/MPIOffloadDevice.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/MPIOffloadDevice.h b/modules/mpi/MPIOffloadDevice.h index eb3b4e4d82..89bc726d1c 100644 --- a/modules/mpi/MPIOffloadDevice.h +++ b/modules/mpi/MPIOffloadDevice.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/MPIOffloadWorker.cpp b/modules/mpi/MPIOffloadWorker.cpp index de1acc365c..cc77f6dd5a 100644 --- a/modules/mpi/MPIOffloadWorker.cpp +++ b/modules/mpi/MPIOffloadWorker.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/apps/CMakeLists.txt b/modules/mpi/apps/CMakeLists.txt index 47b62e4a1c..2d1fc1cd3e 100644 --- a/modules/mpi/apps/CMakeLists.txt +++ b/modules/mpi/apps/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/modules/mpi/apps/gensv/raw_reader.h b/modules/mpi/apps/gensv/raw_reader.h index 7a50e837ac..8800a984d5 100644 --- a/modules/mpi/apps/gensv/raw_reader.h +++ b/modules/mpi/apps/gensv/raw_reader.h @@ -1,7 +1,7 @@ #pragma once // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/apps/ospDDLoader.cpp b/modules/mpi/apps/ospDDLoader.cpp index 3f9b302fab..d6de9e6a7c 100644 --- a/modules/mpi/apps/ospDDLoader.cpp +++ b/modules/mpi/apps/ospDDLoader.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/apps/viewer/CMakeLists.txt b/modules/mpi/apps/viewer/CMakeLists.txt index 34ebaf90d9..ddc0af4612 100644 --- a/modules/mpi/apps/viewer/CMakeLists.txt +++ b/modules/mpi/apps/viewer/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/modules/mpi/common/DistributedModel.cpp b/modules/mpi/common/DistributedModel.cpp index 42f8a25f9a..7f3233c3fb 100644 --- a/modules/mpi/common/DistributedModel.cpp +++ b/modules/mpi/common/DistributedModel.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/common/DistributedModel.h b/modules/mpi/common/DistributedModel.h index 590ec36efb..47fc5193ff 100644 --- a/modules/mpi/common/DistributedModel.h +++ b/modules/mpi/common/DistributedModel.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/common/DistributedModel.ispc b/modules/mpi/common/DistributedModel.ispc index 80a4bcd7dc..dec9ef2cfe 100644 --- a/modules/mpi/common/DistributedModel.ispc +++ b/modules/mpi/common/DistributedModel.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/common/Messaging.cpp b/modules/mpi/common/Messaging.cpp index ef8bb8b837..20fcbc3349 100644 --- a/modules/mpi/common/Messaging.cpp +++ b/modules/mpi/common/Messaging.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/common/Messaging.h b/modules/mpi/common/Messaging.h index 49589014d1..c35b523eb6 100644 --- a/modules/mpi/common/Messaging.h +++ b/modules/mpi/common/Messaging.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/common/OSPWork.cpp b/modules/mpi/common/OSPWork.cpp index 241f192259..4806bc7f8c 100644 --- a/modules/mpi/common/OSPWork.cpp +++ b/modules/mpi/common/OSPWork.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/common/OSPWork.h b/modules/mpi/common/OSPWork.h index f4c1d45d5f..50476775a8 100644 --- a/modules/mpi/common/OSPWork.h +++ b/modules/mpi/common/OSPWork.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/fb/DistributedFrameBuffer.cpp b/modules/mpi/fb/DistributedFrameBuffer.cpp index ccef1ac3a4..0634794be8 100644 --- a/modules/mpi/fb/DistributedFrameBuffer.cpp +++ b/modules/mpi/fb/DistributedFrameBuffer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/fb/DistributedFrameBuffer.h b/modules/mpi/fb/DistributedFrameBuffer.h index d51ff1ff3e..e2165e1a87 100644 --- a/modules/mpi/fb/DistributedFrameBuffer.h +++ b/modules/mpi/fb/DistributedFrameBuffer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/fb/DistributedFrameBuffer.ispc b/modules/mpi/fb/DistributedFrameBuffer.ispc index 681d954ca6..2e16c559e8 100644 --- a/modules/mpi/fb/DistributedFrameBuffer.ispc +++ b/modules/mpi/fb/DistributedFrameBuffer.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/fb/DistributedFrameBuffer_TileTypes.cpp b/modules/mpi/fb/DistributedFrameBuffer_TileTypes.cpp index 104b45a255..73d992b686 100644 --- a/modules/mpi/fb/DistributedFrameBuffer_TileTypes.cpp +++ b/modules/mpi/fb/DistributedFrameBuffer_TileTypes.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/fb/DistributedFrameBuffer_TileTypes.h b/modules/mpi/fb/DistributedFrameBuffer_TileTypes.h index 32cffe4ffa..350341b8a5 100644 --- a/modules/mpi/fb/DistributedFrameBuffer_TileTypes.h +++ b/modules/mpi/fb/DistributedFrameBuffer_TileTypes.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/mpi_offload_worker_main.cpp b/modules/mpi/mpi_offload_worker_main.cpp index d9d67ccf18..61ef20b044 100644 --- a/modules/mpi/mpi_offload_worker_main.cpp +++ b/modules/mpi/mpi_offload_worker_main.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/render/MPILoadBalancer.cpp b/modules/mpi/render/MPILoadBalancer.cpp index 1d6f553dbd..70d1d0fc68 100644 --- a/modules/mpi/render/MPILoadBalancer.cpp +++ b/modules/mpi/render/MPILoadBalancer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/render/MPILoadBalancer.h b/modules/mpi/render/MPILoadBalancer.h index 9f064c3217..e7664e3e06 100644 --- a/modules/mpi/render/MPILoadBalancer.h +++ b/modules/mpi/render/MPILoadBalancer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/render/distributed/DistributedRaycast.cpp b/modules/mpi/render/distributed/DistributedRaycast.cpp index 67502b46b9..3bf8eca6ce 100644 --- a/modules/mpi/render/distributed/DistributedRaycast.cpp +++ b/modules/mpi/render/distributed/DistributedRaycast.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/render/distributed/DistributedRaycast.h b/modules/mpi/render/distributed/DistributedRaycast.h index 2abe0ec844..5effdfe4c6 100644 --- a/modules/mpi/render/distributed/DistributedRaycast.h +++ b/modules/mpi/render/distributed/DistributedRaycast.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/render/distributed/DistributedRaycast.ispc b/modules/mpi/render/distributed/DistributedRaycast.ispc index 413c97c97f..e06dd62677 100644 --- a/modules/mpi/render/distributed/DistributedRaycast.ispc +++ b/modules/mpi/render/distributed/DistributedRaycast.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/testing/TestAsyncBandwidth.cpp b/modules/mpi/testing/TestAsyncBandwidth.cpp index 6054c10fba..828ff3e906 100644 --- a/modules/mpi/testing/TestAsyncBandwidth.cpp +++ b/modules/mpi/testing/TestAsyncBandwidth.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/testing/TestAsyncCorrectness.cpp b/modules/mpi/testing/TestAsyncCorrectness.cpp index f652a8c277..61c07559cf 100644 --- a/modules/mpi/testing/TestAsyncCorrectness.cpp +++ b/modules/mpi/testing/TestAsyncCorrectness.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/testing/TestDistributedApp.cpp b/modules/mpi/testing/TestDistributedApp.cpp index 189a164d62..e4339d9d32 100644 --- a/modules/mpi/testing/TestDistributedApp.cpp +++ b/modules/mpi/testing/TestDistributedApp.cpp @@ -1,6 +1,6 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/mpi/testing/createCompositeTestCubes.cpp b/modules/mpi/testing/createCompositeTestCubes.cpp index 4fab1f056b..06a5ba5059 100644 --- a/modules/mpi/testing/createCompositeTestCubes.cpp +++ b/modules/mpi/testing/createCompositeTestCubes.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/pluggableGeometryExample/CMakeLists.txt b/modules/pluggableGeometryExample/CMakeLists.txt index 35bb9d8dc6..ba30b6705e 100644 --- a/modules/pluggableGeometryExample/CMakeLists.txt +++ b/modules/pluggableGeometryExample/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/modules/pluggableGeometryExample/apps/CMakeLists.txt b/modules/pluggableGeometryExample/apps/CMakeLists.txt index 390674f094..79ecd455f3 100644 --- a/modules/pluggableGeometryExample/apps/CMakeLists.txt +++ b/modules/pluggableGeometryExample/apps/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/modules/pluggableGeometryExample/apps/CommandLine.h b/modules/pluggableGeometryExample/apps/CommandLine.h index 54249c8fa7..3834eaba83 100644 --- a/modules/pluggableGeometryExample/apps/CommandLine.h +++ b/modules/pluggableGeometryExample/apps/CommandLine.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/pluggableGeometryExample/apps/Patch.cpp b/modules/pluggableGeometryExample/apps/Patch.cpp index 02069d75a7..2db6785f28 100644 --- a/modules/pluggableGeometryExample/apps/Patch.cpp +++ b/modules/pluggableGeometryExample/apps/Patch.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/pluggableGeometryExample/apps/Patch.h b/modules/pluggableGeometryExample/apps/Patch.h index ca309e5e4f..d5a3b5e860 100644 --- a/modules/pluggableGeometryExample/apps/Patch.h +++ b/modules/pluggableGeometryExample/apps/Patch.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/pluggableGeometryExample/apps/bilinearPatchViewer.cpp b/modules/pluggableGeometryExample/apps/bilinearPatchViewer.cpp index 23821bb58e..5dcfe090d6 100644 --- a/modules/pluggableGeometryExample/apps/bilinearPatchViewer.cpp +++ b/modules/pluggableGeometryExample/apps/bilinearPatchViewer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/pluggableGeometryExample/ospray/CMakeLists.txt b/modules/pluggableGeometryExample/ospray/CMakeLists.txt index dddd5ecacd..e1e742799a 100644 --- a/modules/pluggableGeometryExample/ospray/CMakeLists.txt +++ b/modules/pluggableGeometryExample/ospray/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.cpp b/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.cpp index d18a3d05d7..fe2afc4396 100644 --- a/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.cpp +++ b/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.h b/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.h index cc099b029a..9cbae5113d 100644 --- a/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.h +++ b/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.ispc b/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.ispc index 90b6e63bf6..c148cab358 100644 --- a/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.ispc +++ b/modules/pluggableGeometryExample/ospray/geometry/BilinearPatches.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/modules/pluggableGeometryExample/ospray/moduleInit.cpp b/modules/pluggableGeometryExample/ospray/moduleInit.cpp index 11c840248d..5fbbca0d3d 100644 --- a/modules/pluggableGeometryExample/ospray/moduleInit.cpp +++ b/modules/pluggableGeometryExample/ospray/moduleInit.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/CMakeLists.txt b/ospray/CMakeLists.txt index 1c127cd600..b4915abb73 100644 --- a/ospray/CMakeLists.txt +++ b/ospray/CMakeLists.txt @@ -1,5 +1,5 @@ ## ======================================================================== ## -## Copyright 2009-2017 Intel Corporation ## +## Copyright 2009-2018 Intel Corporation ## ## ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## ## you may not use this file except in compliance with the License. ## diff --git a/ospray/api/API.cpp b/ospray/api/API.cpp index c3b6c90792..ffc89c7534 100644 --- a/ospray/api/API.cpp +++ b/ospray/api/API.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/api/Device.cpp b/ospray/api/Device.cpp index 18a0655ff8..eece085688 100644 --- a/ospray/api/Device.cpp +++ b/ospray/api/Device.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/api/Device.h b/ospray/api/Device.h index d497d64332..c517844860 100644 --- a/ospray/api/Device.h +++ b/ospray/api/Device.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/api/LocalDevice.cpp b/ospray/api/LocalDevice.cpp index c0ca5c08d7..694a1d517e 100644 --- a/ospray/api/LocalDevice.cpp +++ b/ospray/api/LocalDevice.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/api/LocalDevice.h b/ospray/api/LocalDevice.h index 31e0ddb0ee..2aedfa9349 100644 --- a/ospray/api/LocalDevice.h +++ b/ospray/api/LocalDevice.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/Camera.cpp b/ospray/camera/Camera.cpp index 86205a1eaf..69217f9e0f 100644 --- a/ospray/camera/Camera.cpp +++ b/ospray/camera/Camera.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/Camera.h b/ospray/camera/Camera.h index eabc6b342b..968fe72f31 100644 --- a/ospray/camera/Camera.h +++ b/ospray/camera/Camera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/Camera.ih b/ospray/camera/Camera.ih index 16a86ea023..b2a1acb8bf 100644 --- a/ospray/camera/Camera.ih +++ b/ospray/camera/Camera.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/Camera.ispc b/ospray/camera/Camera.ispc index cf3407238e..a807ba9b40 100644 --- a/ospray/camera/Camera.ispc +++ b/ospray/camera/Camera.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/OrthographicCamera.cpp b/ospray/camera/OrthographicCamera.cpp index 9583d02a64..38f3b4116b 100644 --- a/ospray/camera/OrthographicCamera.cpp +++ b/ospray/camera/OrthographicCamera.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/OrthographicCamera.h b/ospray/camera/OrthographicCamera.h index 6df00c9490..276589494d 100644 --- a/ospray/camera/OrthographicCamera.h +++ b/ospray/camera/OrthographicCamera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/OrthographicCamera.ih b/ospray/camera/OrthographicCamera.ih index 92aacb2b04..98f0d301ce 100644 --- a/ospray/camera/OrthographicCamera.ih +++ b/ospray/camera/OrthographicCamera.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/OrthographicCamera.ispc b/ospray/camera/OrthographicCamera.ispc index 82a1734809..2ef9d7410f 100644 --- a/ospray/camera/OrthographicCamera.ispc +++ b/ospray/camera/OrthographicCamera.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/PanoramicCamera.cpp b/ospray/camera/PanoramicCamera.cpp index cc443b44a2..dff27f5324 100644 --- a/ospray/camera/PanoramicCamera.cpp +++ b/ospray/camera/PanoramicCamera.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/PanoramicCamera.h b/ospray/camera/PanoramicCamera.h index 75176d044a..c7dc3323fd 100644 --- a/ospray/camera/PanoramicCamera.h +++ b/ospray/camera/PanoramicCamera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/PanoramicCamera.ih b/ospray/camera/PanoramicCamera.ih index 97967a9fa6..57f12c6690 100644 --- a/ospray/camera/PanoramicCamera.ih +++ b/ospray/camera/PanoramicCamera.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/PanoramicCamera.ispc b/ospray/camera/PanoramicCamera.ispc index 26808ced02..2b5750b7df 100644 --- a/ospray/camera/PanoramicCamera.ispc +++ b/ospray/camera/PanoramicCamera.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/PerspectiveCamera.cpp b/ospray/camera/PerspectiveCamera.cpp index 22e887c72e..d98e857075 100644 --- a/ospray/camera/PerspectiveCamera.cpp +++ b/ospray/camera/PerspectiveCamera.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/PerspectiveCamera.h b/ospray/camera/PerspectiveCamera.h index 4ab2fa62df..5bb5f7c674 100644 --- a/ospray/camera/PerspectiveCamera.h +++ b/ospray/camera/PerspectiveCamera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/PerspectiveCamera.ih b/ospray/camera/PerspectiveCamera.ih index d15fabc586..4f6b034a25 100644 --- a/ospray/camera/PerspectiveCamera.ih +++ b/ospray/camera/PerspectiveCamera.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/camera/PerspectiveCamera.ispc b/ospray/camera/PerspectiveCamera.ispc index bfe61ea833..f599216872 100644 --- a/ospray/camera/PerspectiveCamera.ispc +++ b/ospray/camera/PerspectiveCamera.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Data.cpp b/ospray/common/Data.cpp index e5e272f757..9ece31d5d5 100644 --- a/ospray/common/Data.cpp +++ b/ospray/common/Data.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Data.h b/ospray/common/Data.h index 168c200340..99184511b3 100644 --- a/ospray/common/Data.h +++ b/ospray/common/Data.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/DifferentialGeometry.ih b/ospray/common/DifferentialGeometry.ih index 7b6083cf23..fb276075cd 100644 --- a/ospray/common/DifferentialGeometry.ih +++ b/ospray/common/DifferentialGeometry.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Library.h b/ospray/common/Library.h index 16ced8d166..87ce7e1a0e 100644 --- a/ospray/common/Library.h +++ b/ospray/common/Library.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Managed.cpp b/ospray/common/Managed.cpp index 63a84673a9..88d9e7eaa0 100644 --- a/ospray/common/Managed.cpp +++ b/ospray/common/Managed.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Managed.h b/ospray/common/Managed.h index ee684fc25c..d6adf1d64b 100644 --- a/ospray/common/Managed.h +++ b/ospray/common/Managed.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Material.cpp b/ospray/common/Material.cpp index 796c052484..d865f40b91 100644 --- a/ospray/common/Material.cpp +++ b/ospray/common/Material.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Material.h b/ospray/common/Material.h index 485766e335..8b663acc1c 100644 --- a/ospray/common/Material.h +++ b/ospray/common/Material.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Material.ih b/ospray/common/Material.ih index 6c4236fa58..48086f2110 100644 --- a/ospray/common/Material.ih +++ b/ospray/common/Material.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Model.cpp b/ospray/common/Model.cpp index dfdd41cb4f..573398b938 100644 --- a/ospray/common/Model.cpp +++ b/ospray/common/Model.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Model.h b/ospray/common/Model.h index 452b5368b3..5ec2582181 100644 --- a/ospray/common/Model.h +++ b/ospray/common/Model.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Model.ih b/ospray/common/Model.ih index 8a1159b171..08ae1795f7 100644 --- a/ospray/common/Model.ih +++ b/ospray/common/Model.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Model.ispc b/ospray/common/Model.ispc index 4a85fb84c7..42f1a3c849 100644 --- a/ospray/common/Model.ispc +++ b/ospray/common/Model.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/OSPCommon.cpp b/ospray/common/OSPCommon.cpp index 0a83dac419..63e4d29284 100644 --- a/ospray/common/OSPCommon.cpp +++ b/ospray/common/OSPCommon.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/OSPCommon.h b/ospray/common/OSPCommon.h index e83ea66ed5..59d765f03f 100644 --- a/ospray/common/OSPCommon.h +++ b/ospray/common/OSPCommon.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/OSPCommon.ih b/ospray/common/OSPCommon.ih index e41872ea11..01f0edaf0f 100644 --- a/ospray/common/OSPCommon.ih +++ b/ospray/common/OSPCommon.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/OSPCommon.ispc b/ospray/common/OSPCommon.ispc index 785ce29355..dc601c042d 100644 --- a/ospray/common/OSPCommon.ispc +++ b/ospray/common/OSPCommon.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/OSPConfig.h.in b/ospray/common/OSPConfig.h.in index 4bd44d61c9..d0f13de2fd 100644 --- a/ospray/common/OSPConfig.h.in +++ b/ospray/common/OSPConfig.h.in @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/ObjectHandle.cpp b/ospray/common/ObjectHandle.cpp index 5808c461be..54fd9cb2d0 100644 --- a/ospray/common/ObjectHandle.cpp +++ b/ospray/common/ObjectHandle.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/ObjectHandle.h b/ospray/common/ObjectHandle.h index 53ae47ef4f..105735adc0 100644 --- a/ospray/common/ObjectHandle.h +++ b/ospray/common/ObjectHandle.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Ray.h b/ospray/common/Ray.h index f0c2fe80f7..e7d6fc47e2 100644 --- a/ospray/common/Ray.h +++ b/ospray/common/Ray.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Ray.ih b/ospray/common/Ray.ih index 3b53e2d802..fe4e30cfd1 100644 --- a/ospray/common/Ray.ih +++ b/ospray/common/Ray.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Texture.h b/ospray/common/Texture.h index ac82b156ca..ffd031beb5 100644 --- a/ospray/common/Texture.h +++ b/ospray/common/Texture.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/common/Util.h b/ospray/common/Util.h index 57574f2422..a0b5927a62 100644 --- a/ospray/common/Util.h +++ b/ospray/common/Util.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/FrameBuffer.cpp b/ospray/fb/FrameBuffer.cpp index fa2320d461..ecfe9f7913 100644 --- a/ospray/fb/FrameBuffer.cpp +++ b/ospray/fb/FrameBuffer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/FrameBuffer.h b/ospray/fb/FrameBuffer.h index f006137c35..ba45dac0dd 100644 --- a/ospray/fb/FrameBuffer.h +++ b/ospray/fb/FrameBuffer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/FrameBuffer.ih b/ospray/fb/FrameBuffer.ih index 776703369b..8f73e7136f 100644 --- a/ospray/fb/FrameBuffer.ih +++ b/ospray/fb/FrameBuffer.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/FrameBuffer.ispc b/ospray/fb/FrameBuffer.ispc index a5a0b8fa5d..669d7f90ce 100644 --- a/ospray/fb/FrameBuffer.ispc +++ b/ospray/fb/FrameBuffer.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/LocalFB.cpp b/ospray/fb/LocalFB.cpp index 74353b9846..2556df2d02 100644 --- a/ospray/fb/LocalFB.cpp +++ b/ospray/fb/LocalFB.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/LocalFB.h b/ospray/fb/LocalFB.h index fa5a9ca333..30e44c069a 100644 --- a/ospray/fb/LocalFB.h +++ b/ospray/fb/LocalFB.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/LocalFB.ih b/ospray/fb/LocalFB.ih index f48f11c357..135be486e9 100644 --- a/ospray/fb/LocalFB.ih +++ b/ospray/fb/LocalFB.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/LocalFB.ispc b/ospray/fb/LocalFB.ispc index 7d59df23be..7a12d5148b 100644 --- a/ospray/fb/LocalFB.ispc +++ b/ospray/fb/LocalFB.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/PixelOp.cpp b/ospray/fb/PixelOp.cpp index 2a775d1882..bbcefaefc3 100644 --- a/ospray/fb/PixelOp.cpp +++ b/ospray/fb/PixelOp.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/PixelOp.h b/ospray/fb/PixelOp.h index b55577daa6..da5616046f 100644 --- a/ospray/fb/PixelOp.h +++ b/ospray/fb/PixelOp.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/Tile.h b/ospray/fb/Tile.h index 5031e2bd5f..c5f8376116 100644 --- a/ospray/fb/Tile.h +++ b/ospray/fb/Tile.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/Tile.ih b/ospray/fb/Tile.ih index 975daebd7b..64126dcd09 100644 --- a/ospray/fb/Tile.ih +++ b/ospray/fb/Tile.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/TileError.cpp b/ospray/fb/TileError.cpp index dac999f330..71a08cb33c 100644 --- a/ospray/fb/TileError.cpp +++ b/ospray/fb/TileError.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/fb/TileError.h b/ospray/fb/TileError.h index bf318fe7eb..85b7668dcd 100644 --- a/ospray/fb/TileError.h +++ b/ospray/fb/TileError.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Cylinders.cpp b/ospray/geometry/Cylinders.cpp index b4e99bebad..64728153c9 100644 --- a/ospray/geometry/Cylinders.cpp +++ b/ospray/geometry/Cylinders.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Cylinders.h b/ospray/geometry/Cylinders.h index d2b57b423f..980cc5795a 100644 --- a/ospray/geometry/Cylinders.h +++ b/ospray/geometry/Cylinders.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Cylinders.ispc b/ospray/geometry/Cylinders.ispc index 7b3fc62907..422ac4a659 100644 --- a/ospray/geometry/Cylinders.ispc +++ b/ospray/geometry/Cylinders.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Geometry.cpp b/ospray/geometry/Geometry.cpp index 247163c87b..e1c2c19571 100644 --- a/ospray/geometry/Geometry.cpp +++ b/ospray/geometry/Geometry.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Geometry.h b/ospray/geometry/Geometry.h index 622e3673b8..b1348bf2a5 100644 --- a/ospray/geometry/Geometry.h +++ b/ospray/geometry/Geometry.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Geometry.ih b/ospray/geometry/Geometry.ih index 7c2ff22f18..ea5449133c 100644 --- a/ospray/geometry/Geometry.ih +++ b/ospray/geometry/Geometry.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Geometry.ispc b/ospray/geometry/Geometry.ispc index 8e32b19d3b..5405814934 100644 --- a/ospray/geometry/Geometry.ispc +++ b/ospray/geometry/Geometry.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Instance.cpp b/ospray/geometry/Instance.cpp index 429f27ffb6..8da46f9024 100644 --- a/ospray/geometry/Instance.cpp +++ b/ospray/geometry/Instance.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Instance.h b/ospray/geometry/Instance.h index 78c1a127ae..f929af1e7c 100644 --- a/ospray/geometry/Instance.h +++ b/ospray/geometry/Instance.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Instance.ih b/ospray/geometry/Instance.ih index dfa3ba4d67..6f1c264ab6 100644 --- a/ospray/geometry/Instance.ih +++ b/ospray/geometry/Instance.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Instance.ispc b/ospray/geometry/Instance.ispc index 5e463ae256..4ac3c7eca6 100644 --- a/ospray/geometry/Instance.ispc +++ b/ospray/geometry/Instance.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Isosurfaces.cpp b/ospray/geometry/Isosurfaces.cpp index 12c68b81bd..80857d28b4 100644 --- a/ospray/geometry/Isosurfaces.cpp +++ b/ospray/geometry/Isosurfaces.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Isosurfaces.h b/ospray/geometry/Isosurfaces.h index 3d8e96ffcf..8b6d2e858d 100644 --- a/ospray/geometry/Isosurfaces.h +++ b/ospray/geometry/Isosurfaces.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Isosurfaces.ispc b/ospray/geometry/Isosurfaces.ispc index 7787915107..db68c7348d 100644 --- a/ospray/geometry/Isosurfaces.ispc +++ b/ospray/geometry/Isosurfaces.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Slices.cpp b/ospray/geometry/Slices.cpp index cb79efedee..43269ba1dc 100644 --- a/ospray/geometry/Slices.cpp +++ b/ospray/geometry/Slices.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Slices.h b/ospray/geometry/Slices.h index 609da67321..2309830e78 100644 --- a/ospray/geometry/Slices.h +++ b/ospray/geometry/Slices.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Slices.ispc b/ospray/geometry/Slices.ispc index 14baac3bbb..483eb7c33a 100644 --- a/ospray/geometry/Slices.ispc +++ b/ospray/geometry/Slices.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Spheres.cpp b/ospray/geometry/Spheres.cpp index 4647c78c43..b15522978c 100644 --- a/ospray/geometry/Spheres.cpp +++ b/ospray/geometry/Spheres.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Spheres.h b/ospray/geometry/Spheres.h index c4a977014b..4caf2073d8 100644 --- a/ospray/geometry/Spheres.h +++ b/ospray/geometry/Spheres.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/Spheres.ispc b/ospray/geometry/Spheres.ispc index 1706e711c1..4ba6239768 100644 --- a/ospray/geometry/Spheres.ispc +++ b/ospray/geometry/Spheres.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/StreamLines.cpp b/ospray/geometry/StreamLines.cpp index 77ecfffd0f..655192bf1f 100644 --- a/ospray/geometry/StreamLines.cpp +++ b/ospray/geometry/StreamLines.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/StreamLines.h b/ospray/geometry/StreamLines.h index c866721b4c..60feb6fb58 100644 --- a/ospray/geometry/StreamLines.h +++ b/ospray/geometry/StreamLines.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/StreamLines.ispc b/ospray/geometry/StreamLines.ispc index 6170900fc0..db2d2a9c03 100644 --- a/ospray/geometry/StreamLines.ispc +++ b/ospray/geometry/StreamLines.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/TriangleMesh.cpp b/ospray/geometry/TriangleMesh.cpp index e546d6e968..4ec048fb6e 100644 --- a/ospray/geometry/TriangleMesh.cpp +++ b/ospray/geometry/TriangleMesh.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/TriangleMesh.h b/ospray/geometry/TriangleMesh.h index 18ccf475fd..02b72f191d 100644 --- a/ospray/geometry/TriangleMesh.h +++ b/ospray/geometry/TriangleMesh.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/TriangleMesh.ih b/ospray/geometry/TriangleMesh.ih index 5bb69b5d6a..cf1ea02f2a 100644 --- a/ospray/geometry/TriangleMesh.ih +++ b/ospray/geometry/TriangleMesh.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/geometry/TriangleMesh.ispc b/ospray/geometry/TriangleMesh.ispc index 2d4f5358a3..73987d19d6 100644 --- a/ospray/geometry/TriangleMesh.ispc +++ b/ospray/geometry/TriangleMesh.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/OSPDataType.h b/ospray/include/ospray/OSPDataType.h index 6063f06f18..d2290d3464 100644 --- a/ospray/include/ospray/OSPDataType.h +++ b/ospray/include/ospray/OSPDataType.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/OSPTexture.h b/ospray/include/ospray/OSPTexture.h index dff2d2844f..9b1d823ac3 100644 --- a/ospray/include/ospray/OSPTexture.h +++ b/ospray/include/ospray/OSPTexture.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray.h b/ospray/include/ospray/ospray.h index 07da8faa33..7114cf465d 100644 --- a/ospray/include/ospray/ospray.h +++ b/ospray/include/ospray/ospray.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp.h b/ospray/include/ospray/ospray_cpp.h index 116a40a0e2..566f764ec5 100644 --- a/ospray/include/ospray/ospray_cpp.h +++ b/ospray/include/ospray/ospray_cpp.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Camera.h b/ospray/include/ospray/ospray_cpp/Camera.h index 1de7f75e96..2b4c113044 100644 --- a/ospray/include/ospray/ospray_cpp/Camera.h +++ b/ospray/include/ospray/ospray_cpp/Camera.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Data.h b/ospray/include/ospray/ospray_cpp/Data.h index 0ff45fe9aa..8387c0ff31 100644 --- a/ospray/include/ospray/ospray_cpp/Data.h +++ b/ospray/include/ospray/ospray_cpp/Data.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Device.h b/ospray/include/ospray/ospray_cpp/Device.h index 515088616e..542c244f8b 100644 --- a/ospray/include/ospray/ospray_cpp/Device.h +++ b/ospray/include/ospray/ospray_cpp/Device.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/FrameBuffer.h b/ospray/include/ospray/ospray_cpp/FrameBuffer.h index 21d0f103d0..34f013bd99 100644 --- a/ospray/include/ospray/ospray_cpp/FrameBuffer.h +++ b/ospray/include/ospray/ospray_cpp/FrameBuffer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Geometry.h b/ospray/include/ospray/ospray_cpp/Geometry.h index 1306b5b9fd..dfa46873d4 100644 --- a/ospray/include/ospray/ospray_cpp/Geometry.h +++ b/ospray/include/ospray/ospray_cpp/Geometry.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Light.h b/ospray/include/ospray/ospray_cpp/Light.h index 6bdf05288e..8e2602ebec 100644 --- a/ospray/include/ospray/ospray_cpp/Light.h +++ b/ospray/include/ospray/ospray_cpp/Light.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/ManagedObject.h b/ospray/include/ospray/ospray_cpp/ManagedObject.h index 1bb3196cdc..77c9158d96 100644 --- a/ospray/include/ospray/ospray_cpp/ManagedObject.h +++ b/ospray/include/ospray/ospray_cpp/ManagedObject.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Material.h b/ospray/include/ospray/ospray_cpp/Material.h index c1c6b33d68..8119abd3dd 100644 --- a/ospray/include/ospray/ospray_cpp/Material.h +++ b/ospray/include/ospray/ospray_cpp/Material.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Model.h b/ospray/include/ospray/ospray_cpp/Model.h index 08c0bdbdb9..21a97a1a22 100644 --- a/ospray/include/ospray/ospray_cpp/Model.h +++ b/ospray/include/ospray/ospray_cpp/Model.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/PixelOp.h b/ospray/include/ospray/ospray_cpp/PixelOp.h index 63178cf947..3d85bd0250 100644 --- a/ospray/include/ospray/ospray_cpp/PixelOp.h +++ b/ospray/include/ospray/ospray_cpp/PixelOp.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Renderer.h b/ospray/include/ospray/ospray_cpp/Renderer.h index 38cbf8cecb..75ae8aaf75 100644 --- a/ospray/include/ospray/ospray_cpp/Renderer.h +++ b/ospray/include/ospray/ospray_cpp/Renderer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Texture2D.h b/ospray/include/ospray/ospray_cpp/Texture2D.h index 5b63fcaeba..cb344b219b 100644 --- a/ospray/include/ospray/ospray_cpp/Texture2D.h +++ b/ospray/include/ospray/ospray_cpp/Texture2D.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/TransferFunction.h b/ospray/include/ospray/ospray_cpp/TransferFunction.h index 81fc299246..1673ee7fa7 100644 --- a/ospray/include/ospray/ospray_cpp/TransferFunction.h +++ b/ospray/include/ospray/ospray_cpp/TransferFunction.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/include/ospray/ospray_cpp/Volume.h b/ospray/include/ospray/ospray_cpp/Volume.h index 425ab3e0d0..815f74456d 100644 --- a/ospray/include/ospray/ospray_cpp/Volume.h +++ b/ospray/include/ospray/ospray_cpp/Volume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/AmbientLight.cpp b/ospray/lights/AmbientLight.cpp index e4578bafe5..481c127b02 100644 --- a/ospray/lights/AmbientLight.cpp +++ b/ospray/lights/AmbientLight.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/AmbientLight.h b/ospray/lights/AmbientLight.h index 35ec785d96..eb33f09f6a 100644 --- a/ospray/lights/AmbientLight.h +++ b/ospray/lights/AmbientLight.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/AmbientLight.ispc b/ospray/lights/AmbientLight.ispc index b1f4420192..b258f39dc7 100644 --- a/ospray/lights/AmbientLight.ispc +++ b/ospray/lights/AmbientLight.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/DirectionalLight.cpp b/ospray/lights/DirectionalLight.cpp index 939905fd31..3b92986ff5 100644 --- a/ospray/lights/DirectionalLight.cpp +++ b/ospray/lights/DirectionalLight.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/DirectionalLight.h b/ospray/lights/DirectionalLight.h index b129d1ce9c..b48634e393 100644 --- a/ospray/lights/DirectionalLight.h +++ b/ospray/lights/DirectionalLight.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/DirectionalLight.ispc b/ospray/lights/DirectionalLight.ispc index fcb545591b..daf42783b1 100644 --- a/ospray/lights/DirectionalLight.ispc +++ b/ospray/lights/DirectionalLight.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/HDRILight.cpp b/ospray/lights/HDRILight.cpp index 13c2654065..8e03eb3321 100644 --- a/ospray/lights/HDRILight.cpp +++ b/ospray/lights/HDRILight.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/HDRILight.h b/ospray/lights/HDRILight.h index 755a384c1c..0ac868e9a1 100644 --- a/ospray/lights/HDRILight.h +++ b/ospray/lights/HDRILight.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/HDRILight.ispc b/ospray/lights/HDRILight.ispc index f0a3853552..cccc05b1e9 100644 --- a/ospray/lights/HDRILight.ispc +++ b/ospray/lights/HDRILight.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/Light.cpp b/ospray/lights/Light.cpp index a26758d127..6cdd90ac46 100644 --- a/ospray/lights/Light.cpp +++ b/ospray/lights/Light.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/Light.h b/ospray/lights/Light.h index c4271340fa..5e33bccff6 100644 --- a/ospray/lights/Light.h +++ b/ospray/lights/Light.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/Light.ih b/ospray/lights/Light.ih index 127d67c210..df6467073d 100644 --- a/ospray/lights/Light.ih +++ b/ospray/lights/Light.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/Light.ispc b/ospray/lights/Light.ispc index 98ea9f7e24..7156910c2e 100644 --- a/ospray/lights/Light.ispc +++ b/ospray/lights/Light.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/PointLight.cpp b/ospray/lights/PointLight.cpp index 4a69e13646..a7d916459c 100644 --- a/ospray/lights/PointLight.cpp +++ b/ospray/lights/PointLight.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/PointLight.h b/ospray/lights/PointLight.h index 1938d66e40..777b9be98f 100644 --- a/ospray/lights/PointLight.h +++ b/ospray/lights/PointLight.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/PointLight.ispc b/ospray/lights/PointLight.ispc index 00a15d6116..67bdc0bddc 100644 --- a/ospray/lights/PointLight.ispc +++ b/ospray/lights/PointLight.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/QuadLight.cpp b/ospray/lights/QuadLight.cpp index a19d401186..da5f14b0a7 100644 --- a/ospray/lights/QuadLight.cpp +++ b/ospray/lights/QuadLight.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/QuadLight.h b/ospray/lights/QuadLight.h index ae8cbeab40..b995947969 100644 --- a/ospray/lights/QuadLight.h +++ b/ospray/lights/QuadLight.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/QuadLight.ispc b/ospray/lights/QuadLight.ispc index c88f5afd04..c6668c62cb 100644 --- a/ospray/lights/QuadLight.ispc +++ b/ospray/lights/QuadLight.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/SpotLight.cpp b/ospray/lights/SpotLight.cpp index db8ac5336d..419e371764 100644 --- a/ospray/lights/SpotLight.cpp +++ b/ospray/lights/SpotLight.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/SpotLight.h b/ospray/lights/SpotLight.h index e79d31b849..cf6abde928 100644 --- a/ospray/lights/SpotLight.h +++ b/ospray/lights/SpotLight.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/lights/SpotLight.ispc b/ospray/lights/SpotLight.ispc index a51f63565e..3b08ddf136 100644 --- a/ospray/lights/SpotLight.ispc +++ b/ospray/lights/SpotLight.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/AffineSpace.ih b/ospray/math/AffineSpace.ih index 35f8ec30ae..0c2e3e1e3f 100644 --- a/ospray/math/AffineSpace.ih +++ b/ospray/math/AffineSpace.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/Distribution1D.ih b/ospray/math/Distribution1D.ih index 23b77e4a72..78274d11fa 100644 --- a/ospray/math/Distribution1D.ih +++ b/ospray/math/Distribution1D.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/Distribution1D.ispc b/ospray/math/Distribution1D.ispc index 04b346b4cd..5db105a1b3 100644 --- a/ospray/math/Distribution1D.ispc +++ b/ospray/math/Distribution1D.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/Distribution2D.ih b/ospray/math/Distribution2D.ih index 2b127344e5..8e4305b0eb 100644 --- a/ospray/math/Distribution2D.ih +++ b/ospray/math/Distribution2D.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/Distribution2D.ispc b/ospray/math/Distribution2D.ispc index d0db944033..3c5734c3b5 100644 --- a/ospray/math/Distribution2D.ispc +++ b/ospray/math/Distribution2D.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/LinearSpace.ih b/ospray/math/LinearSpace.ih index 4ecaba214b..f34a99e610 100644 --- a/ospray/math/LinearSpace.ih +++ b/ospray/math/LinearSpace.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/box.ih b/ospray/math/box.ih index ba848f176f..3bebfe47a2 100644 --- a/ospray/math/box.ih +++ b/ospray/math/box.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/box.ispc b/ospray/math/box.ispc index 71478a2ddc..c46b9cbe8b 100644 --- a/ospray/math/box.ispc +++ b/ospray/math/box.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/math.ih b/ospray/math/math.ih index 6f98db9943..f3376246ea 100644 --- a/ospray/math/math.ih +++ b/ospray/math/math.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/random.ih b/ospray/math/random.ih index 36351ed4e2..421418fa01 100644 --- a/ospray/math/random.ih +++ b/ospray/math/random.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/sampling.ih b/ospray/math/sampling.ih index 38ed995454..e4f7612d41 100644 --- a/ospray/math/sampling.ih +++ b/ospray/math/sampling.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/spectrum.h b/ospray/math/spectrum.h index ad134366af..1a012f2c8f 100644 --- a/ospray/math/spectrum.h +++ b/ospray/math/spectrum.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/spectrum.ih b/ospray/math/spectrum.ih index 1a9e6dab4a..8dd856f2ab 100644 --- a/ospray/math/spectrum.ih +++ b/ospray/math/spectrum.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/spectrum.ispc b/ospray/math/spectrum.ispc index 2dd3d50629..042e5cbfc9 100644 --- a/ospray/math/spectrum.ispc +++ b/ospray/math/spectrum.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/math/vec.ih b/ospray/math/vec.ih index 833a78411f..5024b827f1 100644 --- a/ospray/math/vec.ih +++ b/ospray/math/vec.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/LoadBalancer.cpp b/ospray/render/LoadBalancer.cpp index 265b301433..9c9121c3d5 100644 --- a/ospray/render/LoadBalancer.cpp +++ b/ospray/render/LoadBalancer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/LoadBalancer.h b/ospray/render/LoadBalancer.h index cdc652c644..fdba1e1844 100644 --- a/ospray/render/LoadBalancer.h +++ b/ospray/render/LoadBalancer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/Renderer.cpp b/ospray/render/Renderer.cpp index ee6d9b8210..acee9f2768 100644 --- a/ospray/render/Renderer.cpp +++ b/ospray/render/Renderer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/Renderer.h b/ospray/render/Renderer.h index b6ef28195a..9e2fb87484 100644 --- a/ospray/render/Renderer.h +++ b/ospray/render/Renderer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/Renderer.ih b/ospray/render/Renderer.ih index 283233f26e..647e991f2a 100644 --- a/ospray/render/Renderer.ih +++ b/ospray/render/Renderer.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/Renderer.ispc b/ospray/render/Renderer.ispc index f9bf26de89..7ec4556534 100644 --- a/ospray/render/Renderer.ispc +++ b/ospray/render/Renderer.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/GeometryLight.ispc b/ospray/render/pathtracer/GeometryLight.ispc index 3e546711d3..16ac290cc3 100644 --- a/ospray/render/pathtracer/GeometryLight.ispc +++ b/ospray/render/pathtracer/GeometryLight.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/PathTracer.cpp b/ospray/render/pathtracer/PathTracer.cpp index 54c15afacf..c4052d9acd 100644 --- a/ospray/render/pathtracer/PathTracer.cpp +++ b/ospray/render/pathtracer/PathTracer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/PathTracer.h b/ospray/render/pathtracer/PathTracer.h index f440ae0c23..481ff37fda 100644 --- a/ospray/render/pathtracer/PathTracer.h +++ b/ospray/render/pathtracer/PathTracer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/PathTracer.ih b/ospray/render/pathtracer/PathTracer.ih index 2b0844fad7..bcedc1b472 100644 --- a/ospray/render/pathtracer/PathTracer.ih +++ b/ospray/render/pathtracer/PathTracer.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/PathTracer.ispc b/ospray/render/pathtracer/PathTracer.ispc index 277dd08b35..3fb0733194 100644 --- a/ospray/render/pathtracer/PathTracer.ispc +++ b/ospray/render/pathtracer/PathTracer.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/BSDF.ih b/ospray/render/pathtracer/bsdfs/BSDF.ih index 8f2024622d..abf6cd1b9c 100644 --- a/ospray/render/pathtracer/bsdfs/BSDF.ih +++ b/ospray/render/pathtracer/bsdfs/BSDF.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Conductor.ih b/ospray/render/pathtracer/bsdfs/Conductor.ih index 6fd0dd7fdb..c7466306c1 100644 --- a/ospray/render/pathtracer/bsdfs/Conductor.ih +++ b/ospray/render/pathtracer/bsdfs/Conductor.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Dielectric.ih b/ospray/render/pathtracer/bsdfs/Dielectric.ih index 1601f1302d..fd866d58b0 100644 --- a/ospray/render/pathtracer/bsdfs/Dielectric.ih +++ b/ospray/render/pathtracer/bsdfs/Dielectric.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/DielectricLayer.ih b/ospray/render/pathtracer/bsdfs/DielectricLayer.ih index c5f9c41bed..49b00af10c 100644 --- a/ospray/render/pathtracer/bsdfs/DielectricLayer.ih +++ b/ospray/render/pathtracer/bsdfs/DielectricLayer.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Fresnel.ih b/ospray/render/pathtracer/bsdfs/Fresnel.ih index 1b3935730b..eab3eff5cd 100644 --- a/ospray/render/pathtracer/bsdfs/Fresnel.ih +++ b/ospray/render/pathtracer/bsdfs/Fresnel.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/GGXDistribution.ih b/ospray/render/pathtracer/bsdfs/GGXDistribution.ih index bcf6221b5d..b028c076d7 100644 --- a/ospray/render/pathtracer/bsdfs/GGXDistribution.ih +++ b/ospray/render/pathtracer/bsdfs/GGXDistribution.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Lambert.ih b/ospray/render/pathtracer/bsdfs/Lambert.ih index 5bbfc1af4e..d30733bd8e 100644 --- a/ospray/render/pathtracer/bsdfs/Lambert.ih +++ b/ospray/render/pathtracer/bsdfs/Lambert.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/MicrofacetConductor.ih b/ospray/render/pathtracer/bsdfs/MicrofacetConductor.ih index bd4c4aeafe..e5ce4fd258 100644 --- a/ospray/render/pathtracer/bsdfs/MicrofacetConductor.ih +++ b/ospray/render/pathtracer/bsdfs/MicrofacetConductor.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use self file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/MicrofacetDielectricLayer.ih b/ospray/render/pathtracer/bsdfs/MicrofacetDielectricLayer.ih index cf7ee8efbf..3babfa7c33 100644 --- a/ospray/render/pathtracer/bsdfs/MicrofacetDielectricLayer.ih +++ b/ospray/render/pathtracer/bsdfs/MicrofacetDielectricLayer.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Minneart.ih b/ospray/render/pathtracer/bsdfs/Minneart.ih index 00f7914c05..9e5c5a2e42 100644 --- a/ospray/render/pathtracer/bsdfs/Minneart.ih +++ b/ospray/render/pathtracer/bsdfs/Minneart.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/MultiBSDF.ih b/ospray/render/pathtracer/bsdfs/MultiBSDF.ih index 67dc69ad25..b8eee698bd 100644 --- a/ospray/render/pathtracer/bsdfs/MultiBSDF.ih +++ b/ospray/render/pathtracer/bsdfs/MultiBSDF.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Optics.ih b/ospray/render/pathtracer/bsdfs/Optics.ih index cfe75e2736..f581d0a58c 100644 --- a/ospray/render/pathtracer/bsdfs/Optics.ih +++ b/ospray/render/pathtracer/bsdfs/Optics.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/PowerCosineDistribution.ih b/ospray/render/pathtracer/bsdfs/PowerCosineDistribution.ih index 63117c8588..61511b5d66 100644 --- a/ospray/render/pathtracer/bsdfs/PowerCosineDistribution.ih +++ b/ospray/render/pathtracer/bsdfs/PowerCosineDistribution.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Reflection.ih b/ospray/render/pathtracer/bsdfs/Reflection.ih index b85ccf44be..4b3a6acf7e 100644 --- a/ospray/render/pathtracer/bsdfs/Reflection.ih +++ b/ospray/render/pathtracer/bsdfs/Reflection.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Scale.ih b/ospray/render/pathtracer/bsdfs/Scale.ih index 64d33ed547..ba6ce8cec9 100644 --- a/ospray/render/pathtracer/bsdfs/Scale.ih +++ b/ospray/render/pathtracer/bsdfs/Scale.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/ShadingContext.ih b/ospray/render/pathtracer/bsdfs/ShadingContext.ih index e505db3198..73b41b1585 100644 --- a/ospray/render/pathtracer/bsdfs/ShadingContext.ih +++ b/ospray/render/pathtracer/bsdfs/ShadingContext.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Specular.ih b/ospray/render/pathtracer/bsdfs/Specular.ih index b917216911..7999eb29e2 100644 --- a/ospray/render/pathtracer/bsdfs/Specular.ih +++ b/ospray/render/pathtracer/bsdfs/Specular.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/ThinDielectric.ih b/ospray/render/pathtracer/bsdfs/ThinDielectric.ih index 7421dbe691..133f348993 100644 --- a/ospray/render/pathtracer/bsdfs/ThinDielectric.ih +++ b/ospray/render/pathtracer/bsdfs/ThinDielectric.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Transmission.ih b/ospray/render/pathtracer/bsdfs/Transmission.ih index e30b7c2b8b..d076e7fbca 100644 --- a/ospray/render/pathtracer/bsdfs/Transmission.ih +++ b/ospray/render/pathtracer/bsdfs/Transmission.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/bsdfs/Velvety.ih b/ospray/render/pathtracer/bsdfs/Velvety.ih index cca6736405..8a6050e6b3 100644 --- a/ospray/render/pathtracer/bsdfs/Velvety.ih +++ b/ospray/render/pathtracer/bsdfs/Velvety.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Alloy.cpp b/ospray/render/pathtracer/materials/Alloy.cpp index 8519e65629..3915c443e7 100644 --- a/ospray/render/pathtracer/materials/Alloy.cpp +++ b/ospray/render/pathtracer/materials/Alloy.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Alloy.ispc b/ospray/render/pathtracer/materials/Alloy.ispc index 1fca2799aa..1f3bdb1e47 100644 --- a/ospray/render/pathtracer/materials/Alloy.ispc +++ b/ospray/render/pathtracer/materials/Alloy.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Glass.cpp b/ospray/render/pathtracer/materials/Glass.cpp index d92b653638..d33ca73894 100644 --- a/ospray/render/pathtracer/materials/Glass.cpp +++ b/ospray/render/pathtracer/materials/Glass.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Glass.ispc b/ospray/render/pathtracer/materials/Glass.ispc index 8e6a4b1d8c..0a4d3c5571 100644 --- a/ospray/render/pathtracer/materials/Glass.ispc +++ b/ospray/render/pathtracer/materials/Glass.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Luminous.cpp b/ospray/render/pathtracer/materials/Luminous.cpp index b5552a6641..d93a89a9a8 100644 --- a/ospray/render/pathtracer/materials/Luminous.cpp +++ b/ospray/render/pathtracer/materials/Luminous.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Luminous.ispc b/ospray/render/pathtracer/materials/Luminous.ispc index f0344c41f9..66bbe57654 100644 --- a/ospray/render/pathtracer/materials/Luminous.ispc +++ b/ospray/render/pathtracer/materials/Luminous.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Material.ih b/ospray/render/pathtracer/materials/Material.ih index 4a2a538d24..a751f391ce 100644 --- a/ospray/render/pathtracer/materials/Material.ih +++ b/ospray/render/pathtracer/materials/Material.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Material.ispc b/ospray/render/pathtracer/materials/Material.ispc index 46fabbb9be..e2d3b4d864 100644 --- a/ospray/render/pathtracer/materials/Material.ispc +++ b/ospray/render/pathtracer/materials/Material.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Medium.ih b/ospray/render/pathtracer/materials/Medium.ih index 2d3dd15c40..8bf5096a1f 100644 --- a/ospray/render/pathtracer/materials/Medium.ih +++ b/ospray/render/pathtracer/materials/Medium.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Metal.cpp b/ospray/render/pathtracer/materials/Metal.cpp index aa22a16e5a..abe0dd4548 100644 --- a/ospray/render/pathtracer/materials/Metal.cpp +++ b/ospray/render/pathtracer/materials/Metal.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Metal.ispc b/ospray/render/pathtracer/materials/Metal.ispc index dd3eb11743..52542cdbe7 100644 --- a/ospray/render/pathtracer/materials/Metal.ispc +++ b/ospray/render/pathtracer/materials/Metal.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/MetallicPaint.cpp b/ospray/render/pathtracer/materials/MetallicPaint.cpp index a6200bfbc8..e9786cc80d 100644 --- a/ospray/render/pathtracer/materials/MetallicPaint.cpp +++ b/ospray/render/pathtracer/materials/MetallicPaint.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/MetallicPaint.ispc b/ospray/render/pathtracer/materials/MetallicPaint.ispc index 9ed3c432b0..521f4e9388 100644 --- a/ospray/render/pathtracer/materials/MetallicPaint.ispc +++ b/ospray/render/pathtracer/materials/MetallicPaint.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Mix.cpp b/ospray/render/pathtracer/materials/Mix.cpp index a7ed4e40ff..9cae7eea6e 100644 --- a/ospray/render/pathtracer/materials/Mix.cpp +++ b/ospray/render/pathtracer/materials/Mix.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Mix.ispc b/ospray/render/pathtracer/materials/Mix.ispc index 24de3ddc49..4640041839 100644 --- a/ospray/render/pathtracer/materials/Mix.ispc +++ b/ospray/render/pathtracer/materials/Mix.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/OBJ.cpp b/ospray/render/pathtracer/materials/OBJ.cpp index 3f5e5a6aff..ed5695ad19 100644 --- a/ospray/render/pathtracer/materials/OBJ.cpp +++ b/ospray/render/pathtracer/materials/OBJ.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/OBJ.ispc b/ospray/render/pathtracer/materials/OBJ.ispc index 135806b366..83c4626f91 100644 --- a/ospray/render/pathtracer/materials/OBJ.ispc +++ b/ospray/render/pathtracer/materials/OBJ.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Plastic.cpp b/ospray/render/pathtracer/materials/Plastic.cpp index bfc9918976..8ea2517175 100644 --- a/ospray/render/pathtracer/materials/Plastic.cpp +++ b/ospray/render/pathtracer/materials/Plastic.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Plastic.ispc b/ospray/render/pathtracer/materials/Plastic.ispc index 33267b3fa1..e485f3743f 100644 --- a/ospray/render/pathtracer/materials/Plastic.ispc +++ b/ospray/render/pathtracer/materials/Plastic.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/ThinGlass.cpp b/ospray/render/pathtracer/materials/ThinGlass.cpp index 4a68364dbe..416d4fc168 100644 --- a/ospray/render/pathtracer/materials/ThinGlass.cpp +++ b/ospray/render/pathtracer/materials/ThinGlass.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/ThinGlass.ispc b/ospray/render/pathtracer/materials/ThinGlass.ispc index c08e7675f5..9fa98fbda9 100644 --- a/ospray/render/pathtracer/materials/ThinGlass.ispc +++ b/ospray/render/pathtracer/materials/ThinGlass.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Velvet.cpp b/ospray/render/pathtracer/materials/Velvet.cpp index 1694d4692e..a3f72a1b53 100644 --- a/ospray/render/pathtracer/materials/Velvet.cpp +++ b/ospray/render/pathtracer/materials/Velvet.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/pathtracer/materials/Velvet.ispc b/ospray/render/pathtracer/materials/Velvet.ispc index bbbff0603a..6a78be3f7b 100644 --- a/ospray/render/pathtracer/materials/Velvet.ispc +++ b/ospray/render/pathtracer/materials/Velvet.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use self file except in compliance with the License. // diff --git a/ospray/render/raycast/RaycastRenderer.cpp b/ospray/render/raycast/RaycastRenderer.cpp index 6b41f5b663..2c6aa05e6f 100644 --- a/ospray/render/raycast/RaycastRenderer.cpp +++ b/ospray/render/raycast/RaycastRenderer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/raycast/RaycastRenderer.h b/ospray/render/raycast/RaycastRenderer.h index 7df185d9b4..e5b346d5be 100644 --- a/ospray/render/raycast/RaycastRenderer.h +++ b/ospray/render/raycast/RaycastRenderer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/raycast/RaycastRenderer.ispc b/ospray/render/raycast/RaycastRenderer.ispc index 31ae769dd9..453022888e 100644 --- a/ospray/render/raycast/RaycastRenderer.ispc +++ b/ospray/render/raycast/RaycastRenderer.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/SciVisMaterial.cpp b/ospray/render/scivis/SciVisMaterial.cpp index 1dbbadaf90..28fd529fee 100644 --- a/ospray/render/scivis/SciVisMaterial.cpp +++ b/ospray/render/scivis/SciVisMaterial.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/SciVisMaterial.h b/ospray/render/scivis/SciVisMaterial.h index 308d35c23e..7f0603fc9b 100644 --- a/ospray/render/scivis/SciVisMaterial.h +++ b/ospray/render/scivis/SciVisMaterial.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/SciVisMaterial.ih b/ospray/render/scivis/SciVisMaterial.ih index 20f479005f..224e51efcc 100644 --- a/ospray/render/scivis/SciVisMaterial.ih +++ b/ospray/render/scivis/SciVisMaterial.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/SciVisMaterial.ispc b/ospray/render/scivis/SciVisMaterial.ispc index de31e3ac6a..357046bc45 100644 --- a/ospray/render/scivis/SciVisMaterial.ispc +++ b/ospray/render/scivis/SciVisMaterial.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/SciVisRenderer.cpp b/ospray/render/scivis/SciVisRenderer.cpp index 95e76a0b01..eeff442924 100644 --- a/ospray/render/scivis/SciVisRenderer.cpp +++ b/ospray/render/scivis/SciVisRenderer.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/SciVisRenderer.h b/ospray/render/scivis/SciVisRenderer.h index 1edee2f7d3..2129b599b4 100644 --- a/ospray/render/scivis/SciVisRenderer.h +++ b/ospray/render/scivis/SciVisRenderer.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/SciVisRenderer.ih b/ospray/render/scivis/SciVisRenderer.ih index b0044b5151..3e010fee91 100644 --- a/ospray/render/scivis/SciVisRenderer.ih +++ b/ospray/render/scivis/SciVisRenderer.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/SciVisRenderer.ispc b/ospray/render/scivis/SciVisRenderer.ispc index 3ddb8e13ae..f12166bc32 100644 --- a/ospray/render/scivis/SciVisRenderer.ispc +++ b/ospray/render/scivis/SciVisRenderer.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/lightAlpha.ispc b/ospray/render/scivis/lightAlpha.ispc index f9a0c8e35f..8b2a18170f 100644 --- a/ospray/render/scivis/lightAlpha.ispc +++ b/ospray/render/scivis/lightAlpha.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/surfaceShading.ih b/ospray/render/scivis/surfaceShading.ih index 6b3af2040f..f3a4d2a8d6 100644 --- a/ospray/render/scivis/surfaceShading.ih +++ b/ospray/render/scivis/surfaceShading.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/surfaceShading.ispc b/ospray/render/scivis/surfaceShading.ispc index 0233e0f2e8..ccb4bf0b59 100644 --- a/ospray/render/scivis/surfaceShading.ispc +++ b/ospray/render/scivis/surfaceShading.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/scivis/volumeIntegration.ispc b/ospray/render/scivis/volumeIntegration.ispc index 190bc9adb6..c0952be6f3 100644 --- a/ospray/render/scivis/volumeIntegration.ispc +++ b/ospray/render/scivis/volumeIntegration.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/simpleAO/SimpleAO.cpp b/ospray/render/simpleAO/SimpleAO.cpp index e03d1f9afd..83de98014e 100644 --- a/ospray/render/simpleAO/SimpleAO.cpp +++ b/ospray/render/simpleAO/SimpleAO.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/simpleAO/SimpleAO.h b/ospray/render/simpleAO/SimpleAO.h index 6a7e1b2dc7..e509eeccb6 100644 --- a/ospray/render/simpleAO/SimpleAO.h +++ b/ospray/render/simpleAO/SimpleAO.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/simpleAO/SimpleAO.ispc b/ospray/render/simpleAO/SimpleAO.ispc index e1b08925cd..4a42d51cd7 100644 --- a/ospray/render/simpleAO/SimpleAO.ispc +++ b/ospray/render/simpleAO/SimpleAO.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/simpleAO/SimpleAOMaterial.cpp b/ospray/render/simpleAO/SimpleAOMaterial.cpp index 18efb97d2c..1e32e084fd 100644 --- a/ospray/render/simpleAO/SimpleAOMaterial.cpp +++ b/ospray/render/simpleAO/SimpleAOMaterial.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/simpleAO/SimpleAOMaterial.h b/ospray/render/simpleAO/SimpleAOMaterial.h index 6431c08a4e..85116b89bf 100644 --- a/ospray/render/simpleAO/SimpleAOMaterial.h +++ b/ospray/render/simpleAO/SimpleAOMaterial.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/simpleAO/SimpleAOMaterial.ih b/ospray/render/simpleAO/SimpleAOMaterial.ih index 9180045f3b..903022c63c 100644 --- a/ospray/render/simpleAO/SimpleAOMaterial.ih +++ b/ospray/render/simpleAO/SimpleAOMaterial.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/simpleAO/SimpleAOMaterial.ispc b/ospray/render/simpleAO/SimpleAOMaterial.ispc index 7b7ce8d4e0..6c5e936a4e 100644 --- a/ospray/render/simpleAO/SimpleAOMaterial.ispc +++ b/ospray/render/simpleAO/SimpleAOMaterial.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/util.h b/ospray/render/util.h index c973167ffb..7878dffd5e 100644 --- a/ospray/render/util.h +++ b/ospray/render/util.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/util.ih b/ospray/render/util.ih index dfb05ab76e..7179b45f5d 100644 --- a/ospray/render/util.ih +++ b/ospray/render/util.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/render/util.ispc b/ospray/render/util.ispc index 6a5bcb89df..c5c75da2fc 100644 --- a/ospray/render/util.ispc +++ b/ospray/render/util.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/texture/Texture2D.cpp b/ospray/texture/Texture2D.cpp index 777042ad61..347a4d540e 100644 --- a/ospray/texture/Texture2D.cpp +++ b/ospray/texture/Texture2D.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/texture/Texture2D.h b/ospray/texture/Texture2D.h index 8a0df4af3a..822b87e55e 100644 --- a/ospray/texture/Texture2D.h +++ b/ospray/texture/Texture2D.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/texture/Texture2D.ih b/ospray/texture/Texture2D.ih index a89b2ad25d..17554dc6cd 100644 --- a/ospray/texture/Texture2D.ih +++ b/ospray/texture/Texture2D.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/texture/Texture2D.ispc b/ospray/texture/Texture2D.ispc index 7cfd317f72..4674119e7e 100644 --- a/ospray/texture/Texture2D.ispc +++ b/ospray/texture/Texture2D.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/texture/TextureParam.ih b/ospray/texture/TextureParam.ih index c69fec2787..dd1e795c71 100644 --- a/ospray/texture/TextureParam.ih +++ b/ospray/texture/TextureParam.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/transferFunction/LinearTransferFunction.cpp b/ospray/transferFunction/LinearTransferFunction.cpp index b73aa49b72..2aabf476a1 100644 --- a/ospray/transferFunction/LinearTransferFunction.cpp +++ b/ospray/transferFunction/LinearTransferFunction.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/transferFunction/LinearTransferFunction.h b/ospray/transferFunction/LinearTransferFunction.h index 2029207625..6ca2da8581 100644 --- a/ospray/transferFunction/LinearTransferFunction.h +++ b/ospray/transferFunction/LinearTransferFunction.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/transferFunction/LinearTransferFunction.ih b/ospray/transferFunction/LinearTransferFunction.ih index f57f1c4b2f..fe6e9ec017 100644 --- a/ospray/transferFunction/LinearTransferFunction.ih +++ b/ospray/transferFunction/LinearTransferFunction.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/transferFunction/LinearTransferFunction.ispc b/ospray/transferFunction/LinearTransferFunction.ispc index 32dec1c8b6..9e0e0210d6 100644 --- a/ospray/transferFunction/LinearTransferFunction.ispc +++ b/ospray/transferFunction/LinearTransferFunction.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/transferFunction/TransferFunction.cpp b/ospray/transferFunction/TransferFunction.cpp index 0d5466a594..7c613aa339 100644 --- a/ospray/transferFunction/TransferFunction.cpp +++ b/ospray/transferFunction/TransferFunction.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/transferFunction/TransferFunction.h b/ospray/transferFunction/TransferFunction.h index 6bb8bebcd4..c70f57df9a 100644 --- a/ospray/transferFunction/TransferFunction.h +++ b/ospray/transferFunction/TransferFunction.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/transferFunction/TransferFunction.ih b/ospray/transferFunction/TransferFunction.ih index 3d1a4a28c3..710dc7b358 100644 --- a/ospray/transferFunction/TransferFunction.ih +++ b/ospray/transferFunction/TransferFunction.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/transferFunction/TransferFunction.ispc b/ospray/transferFunction/TransferFunction.ispc index 4961e03d34..9cf56226d5 100644 --- a/ospray/transferFunction/TransferFunction.ispc +++ b/ospray/transferFunction/TransferFunction.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/version.h.in b/ospray/version.h.in index 99a75a2e9a..1561f9c634 100644 --- a/ospray/version.h.in +++ b/ospray/version.h.in @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/Volume.cpp b/ospray/volume/Volume.cpp index 02f55a270e..9e70f9838d 100644 --- a/ospray/volume/Volume.cpp +++ b/ospray/volume/Volume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/Volume.h b/ospray/volume/Volume.h index 40050a2f0e..e953525ad9 100644 --- a/ospray/volume/Volume.h +++ b/ospray/volume/Volume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/Volume.ih b/ospray/volume/Volume.ih index 53c6a3230b..35ea6cb19a 100644 --- a/ospray/volume/Volume.ih +++ b/ospray/volume/Volume.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/Volume.ispc b/ospray/volume/Volume.ispc index 555acf37b1..3c1fa06d9b 100644 --- a/ospray/volume/Volume.ispc +++ b/ospray/volume/Volume.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMR.ih b/ospray/volume/amr/AMR.ih index 74f9e46ee3..70db58aff6 100644 --- a/ospray/volume/amr/AMR.ih +++ b/ospray/volume/amr/AMR.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMRAccel.cpp b/ospray/volume/amr/AMRAccel.cpp index 90f8d3c0cf..0dcf32230d 100644 --- a/ospray/volume/amr/AMRAccel.cpp +++ b/ospray/volume/amr/AMRAccel.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMRAccel.h b/ospray/volume/amr/AMRAccel.h index 5bad04348c..a65e22c7c5 100644 --- a/ospray/volume/amr/AMRAccel.h +++ b/ospray/volume/amr/AMRAccel.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMRData.cpp b/ospray/volume/amr/AMRData.cpp index 33cf376e5c..247a4c3d3f 100644 --- a/ospray/volume/amr/AMRData.cpp +++ b/ospray/volume/amr/AMRData.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMRData.h b/ospray/volume/amr/AMRData.h index d454d702b1..82a5e93e2f 100644 --- a/ospray/volume/amr/AMRData.h +++ b/ospray/volume/amr/AMRData.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMRVolume.cpp b/ospray/volume/amr/AMRVolume.cpp index 3ee259db3c..bb57d26ac8 100644 --- a/ospray/volume/amr/AMRVolume.cpp +++ b/ospray/volume/amr/AMRVolume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMRVolume.h b/ospray/volume/amr/AMRVolume.h index 1bde6daa0c..cd42158e3a 100644 --- a/ospray/volume/amr/AMRVolume.h +++ b/ospray/volume/amr/AMRVolume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMRVolume.ih b/ospray/volume/amr/AMRVolume.ih index da449f9c0b..6f782ec145 100644 --- a/ospray/volume/amr/AMRVolume.ih +++ b/ospray/volume/amr/AMRVolume.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/AMRVolume.ispc b/ospray/volume/amr/AMRVolume.ispc index b348072200..4555507ea7 100644 --- a/ospray/volume/amr/AMRVolume.ispc +++ b/ospray/volume/amr/AMRVolume.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/CellRef.ih b/ospray/volume/amr/CellRef.ih index 31c499cbd0..cb4be7e758 100644 --- a/ospray/volume/amr/CellRef.ih +++ b/ospray/volume/amr/CellRef.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/CellRef.ispc b/ospray/volume/amr/CellRef.ispc index 5927f44b8a..fb072b7d68 100644 --- a/ospray/volume/amr/CellRef.ispc +++ b/ospray/volume/amr/CellRef.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/DualCell.ih b/ospray/volume/amr/DualCell.ih index d8b22dc6cb..e2d7d9e1e0 100644 --- a/ospray/volume/amr/DualCell.ih +++ b/ospray/volume/amr/DualCell.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/DualCell.ispc b/ospray/volume/amr/DualCell.ispc index 4a6891d855..f2ca015531 100644 --- a/ospray/volume/amr/DualCell.ispc +++ b/ospray/volume/amr/DualCell.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/FindStack.ih b/ospray/volume/amr/FindStack.ih index 21df93c700..55a1a22e33 100644 --- a/ospray/volume/amr/FindStack.ih +++ b/ospray/volume/amr/FindStack.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/KDTree.ih b/ospray/volume/amr/KDTree.ih index b697ec3cd2..bae67f2154 100644 --- a/ospray/volume/amr/KDTree.ih +++ b/ospray/volume/amr/KDTree.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/method_current.ispc b/ospray/volume/amr/method_current.ispc index e29d83a574..0020642556 100644 --- a/ospray/volume/amr/method_current.ispc +++ b/ospray/volume/amr/method_current.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/method_finest.ispc b/ospray/volume/amr/method_finest.ispc index 29b8317cf7..179aaeb0bd 100644 --- a/ospray/volume/amr/method_finest.ispc +++ b/ospray/volume/amr/method_finest.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/method_octant.ispc b/ospray/volume/amr/method_octant.ispc index 2d86aa8228..a77c78b5d6 100644 --- a/ospray/volume/amr/method_octant.ispc +++ b/ospray/volume/amr/method_octant.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/amr/range.ih b/ospray/volume/amr/range.ih index 519723745d..7218bfa468 100644 --- a/ospray/volume/amr/range.ih +++ b/ospray/volume/amr/range.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/GridAccelerator.ih b/ospray/volume/structured/GridAccelerator.ih index 0010515a85..c82e8e1091 100644 --- a/ospray/volume/structured/GridAccelerator.ih +++ b/ospray/volume/structured/GridAccelerator.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/GridAccelerator.ispc b/ospray/volume/structured/GridAccelerator.ispc index ff11d8a2e2..1f85430a73 100644 --- a/ospray/volume/structured/GridAccelerator.ispc +++ b/ospray/volume/structured/GridAccelerator.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/StructuredVolume.cpp b/ospray/volume/structured/StructuredVolume.cpp index d3e17b676d..e562031f37 100644 --- a/ospray/volume/structured/StructuredVolume.cpp +++ b/ospray/volume/structured/StructuredVolume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/StructuredVolume.h b/ospray/volume/structured/StructuredVolume.h index ed4f8b1c16..ee4785fdbb 100644 --- a/ospray/volume/structured/StructuredVolume.h +++ b/ospray/volume/structured/StructuredVolume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/StructuredVolume.ih b/ospray/volume/structured/StructuredVolume.ih index 21d34d54b6..caa9a9755c 100644 --- a/ospray/volume/structured/StructuredVolume.ih +++ b/ospray/volume/structured/StructuredVolume.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/StructuredVolume.ispc b/ospray/volume/structured/StructuredVolume.ispc index c9d0be62b9..b57f257c0a 100644 --- a/ospray/volume/structured/StructuredVolume.ispc +++ b/ospray/volume/structured/StructuredVolume.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/bricked/BlockBrickedVolume.cpp b/ospray/volume/structured/bricked/BlockBrickedVolume.cpp index 56ce127724..854b4ffe8b 100644 --- a/ospray/volume/structured/bricked/BlockBrickedVolume.cpp +++ b/ospray/volume/structured/bricked/BlockBrickedVolume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/bricked/BlockBrickedVolume.h b/ospray/volume/structured/bricked/BlockBrickedVolume.h index 83d89ac87b..98b3959e41 100644 --- a/ospray/volume/structured/bricked/BlockBrickedVolume.h +++ b/ospray/volume/structured/bricked/BlockBrickedVolume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/bricked/BlockBrickedVolume.ih b/ospray/volume/structured/bricked/BlockBrickedVolume.ih index 1d0e51a6ef..33d8045d72 100644 --- a/ospray/volume/structured/bricked/BlockBrickedVolume.ih +++ b/ospray/volume/structured/bricked/BlockBrickedVolume.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/bricked/BlockBrickedVolume.ispc b/ospray/volume/structured/bricked/BlockBrickedVolume.ispc index 1b3f741be4..b3e61c7f64 100644 --- a/ospray/volume/structured/bricked/BlockBrickedVolume.ispc +++ b/ospray/volume/structured/bricked/BlockBrickedVolume.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/bricked/GhostBlockBrickedVolume.cpp b/ospray/volume/structured/bricked/GhostBlockBrickedVolume.cpp index 320cc01c53..d6c10cfb23 100644 --- a/ospray/volume/structured/bricked/GhostBlockBrickedVolume.cpp +++ b/ospray/volume/structured/bricked/GhostBlockBrickedVolume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/bricked/GhostBlockBrickedVolume.h b/ospray/volume/structured/bricked/GhostBlockBrickedVolume.h index 01e9d7ce83..b799ab97d7 100644 --- a/ospray/volume/structured/bricked/GhostBlockBrickedVolume.h +++ b/ospray/volume/structured/bricked/GhostBlockBrickedVolume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/bricked/GhostBlockBrickedVolume.ih b/ospray/volume/structured/bricked/GhostBlockBrickedVolume.ih index 7865d927d7..d0e4b349c5 100644 --- a/ospray/volume/structured/bricked/GhostBlockBrickedVolume.ih +++ b/ospray/volume/structured/bricked/GhostBlockBrickedVolume.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/bricked/GhostBlockBrickedVolume.ispc b/ospray/volume/structured/bricked/GhostBlockBrickedVolume.ispc index 12ec27a8e7..8e91ee02c6 100644 --- a/ospray/volume/structured/bricked/GhostBlockBrickedVolume.ispc +++ b/ospray/volume/structured/bricked/GhostBlockBrickedVolume.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/shared/SharedStructuredVolume.cpp b/ospray/volume/structured/shared/SharedStructuredVolume.cpp index 23ad363a36..f29b02b63e 100644 --- a/ospray/volume/structured/shared/SharedStructuredVolume.cpp +++ b/ospray/volume/structured/shared/SharedStructuredVolume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/shared/SharedStructuredVolume.h b/ospray/volume/structured/shared/SharedStructuredVolume.h index 837c20b130..09271e2585 100644 --- a/ospray/volume/structured/shared/SharedStructuredVolume.h +++ b/ospray/volume/structured/shared/SharedStructuredVolume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/shared/SharedStructuredVolume.ih b/ospray/volume/structured/shared/SharedStructuredVolume.ih index e93acf2602..ed5b42205e 100644 --- a/ospray/volume/structured/shared/SharedStructuredVolume.ih +++ b/ospray/volume/structured/shared/SharedStructuredVolume.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/structured/shared/SharedStructuredVolume.ispc b/ospray/volume/structured/shared/SharedStructuredVolume.ispc index 3d496ffa2f..8d7723ec29 100644 --- a/ospray/volume/structured/shared/SharedStructuredVolume.ispc +++ b/ospray/volume/structured/shared/SharedStructuredVolume.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/unstructured/MinMaxBVH2.cpp b/ospray/volume/unstructured/MinMaxBVH2.cpp index 2c65517d93..faf49ba597 100644 --- a/ospray/volume/unstructured/MinMaxBVH2.cpp +++ b/ospray/volume/unstructured/MinMaxBVH2.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/unstructured/MinMaxBVH2.h b/ospray/volume/unstructured/MinMaxBVH2.h index bc1680badc..e0efc09fce 100644 --- a/ospray/volume/unstructured/MinMaxBVH2.h +++ b/ospray/volume/unstructured/MinMaxBVH2.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/unstructured/MinMaxBVH2.ih b/ospray/volume/unstructured/MinMaxBVH2.ih index ef6431e730..e3ff2c002f 100644 --- a/ospray/volume/unstructured/MinMaxBVH2.ih +++ b/ospray/volume/unstructured/MinMaxBVH2.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/unstructured/MinMaxBVH2.ispc b/ospray/volume/unstructured/MinMaxBVH2.ispc index 282b0203e8..089160b2a2 100644 --- a/ospray/volume/unstructured/MinMaxBVH2.ispc +++ b/ospray/volume/unstructured/MinMaxBVH2.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.cpp b/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.cpp index 2bac128157..2c3a7d1ca1 100644 --- a/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.cpp +++ b/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.cpp @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.h b/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.h index d75abb4625..50b1af7d9f 100644 --- a/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.h +++ b/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.h @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ih b/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ih index 10d672b8b1..c192a314f6 100644 --- a/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ih +++ b/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ih @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // diff --git a/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ispc b/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ispc index a4b1ae5949..306eb32f7d 100644 --- a/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ispc +++ b/ospray/volume/unstructured/tetrahedral/TetrahedralVolume.ispc @@ -1,5 +1,5 @@ // ======================================================================== // -// Copyright 2009-2017 Intel Corporation // +// Copyright 2009-2018 Intel Corporation // // // // Licensed under the Apache License, Version 2.0 (the "License"); // // you may not use this file except in compliance with the License. // From ca5acdc3bd6d51d58dd73c79b6dcc77c14904aa7 Mon Sep 17 00:00:00 2001 From: Carson Brownlee Date: Mon, 8 Jan 2018 15:34:37 -0500 Subject: [PATCH 4/8] adding ispc opt flags --- components/ospcommon/cmake/ispc.cmake | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/components/ospcommon/cmake/ispc.cmake b/components/ospcommon/cmake/ispc.cmake index dd5e6073e3..a58ddd04aa 100644 --- a/components/ospcommon/cmake/ispc.cmake +++ b/components/ospcommon/cmake/ispc.cmake @@ -109,10 +109,19 @@ MACRO (OSPRAY_ISPC_COMPILE) SET(ISPC_INCLUDE_DIR_PARMS "-I" ${ISPC_INCLUDE_DIR_PARMS}) ENDIF() + #CAUTION: -O0/1 -g with ispc seg faults + SET(ISPC_FLAGS_DEBUG -O2 -g CACHE STRING "ISPC Debug flags") + MARK_AS_ADVANCED(ISPC_FLAGS_DEBUG) + SET(ISPC_FLAGS_RELEASE -O3 CACHE STRING "ISPC Release flags") + MARK_AS_ADVANCED(ISPC_FLAGS_RELEASE) + SET(ISPC_FLAGS_RELWITHDEBINFO -O2 -g CACHE STRING "ISPC Release with Debug symbols flags") + MARK_AS_ADVANCED(ISPC_FLAGS_RELWITHDEBINFO) IF (WIN32 OR "${CMAKE_BUILD_TYPE}" STREQUAL "Release") - SET(ISPC_OPT_FLAGS -O3) + SET(ISPC_OPT_FLAGS ${ISPC_FLAGS_RELEASE}) + ELSEIF ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") + SET(ISPC_OPT_FLAGS ${ISPC_FLAGS_DEBUG}) ELSE() - SET(ISPC_OPT_FLAGS -O2 -g) + SET(ISPC_OPT_FLAGS ${ISPC_FLAGS_RELWITHDEBINFO}) ENDIF() IF (NOT WIN32) From 35667336b7d4025a9312d987329470d9c8938079 Mon Sep 17 00:00:00 2001 From: Carson Brownlee Date: Mon, 8 Jan 2018 16:41:37 -0500 Subject: [PATCH 5/8] chainging default value of ispc debug flag --- components/ospcommon/cmake/ispc.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ospcommon/cmake/ispc.cmake b/components/ospcommon/cmake/ispc.cmake index a58ddd04aa..1819cc5ab0 100644 --- a/components/ospcommon/cmake/ispc.cmake +++ b/components/ospcommon/cmake/ispc.cmake @@ -110,7 +110,7 @@ MACRO (OSPRAY_ISPC_COMPILE) ENDIF() #CAUTION: -O0/1 -g with ispc seg faults - SET(ISPC_FLAGS_DEBUG -O2 -g CACHE STRING "ISPC Debug flags") + SET(ISPC_FLAGS_DEBUG -g CACHE STRING "ISPC Debug flags") MARK_AS_ADVANCED(ISPC_FLAGS_DEBUG) SET(ISPC_FLAGS_RELEASE -O3 CACHE STRING "ISPC Release flags") MARK_AS_ADVANCED(ISPC_FLAGS_RELEASE) From 21e736dba306de7bcc0f606fad88bd4003ab46cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=BCnther?= Date: Tue, 9 Jan 2018 16:45:45 +0100 Subject: [PATCH 6/8] New ISPC v1.9.2 also works --- components/ospcommon/cmake/ispc.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ospcommon/cmake/ispc.cmake b/components/ospcommon/cmake/ispc.cmake index 1819cc5ab0..c797af5f3c 100644 --- a/components/ospcommon/cmake/ispc.cmake +++ b/components/ospcommon/cmake/ispc.cmake @@ -15,7 +15,7 @@ ## ======================================================================== ## # ISPC versions to look for, in decending order (newest first) -SET(ISPC_VERSION_WORKING "1.9.1") +SET(ISPC_VERSION_WORKING "1.9.2" "1.9.1") LIST(GET ISPC_VERSION_WORKING -1 ISPC_VERSION_REQUIRED) IF (NOT ISPC_EXECUTABLE) From 46cd509004e353a11315a3968158ec17d2a4a028 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=BCnther?= Date: Tue, 9 Jan 2018 17:11:56 +0100 Subject: [PATCH 7/8] Bump version --- cmake/ospray_options.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/ospray_options.cmake b/cmake/ospray_options.cmake index c7562e9eca..0fe2038e6a 100644 --- a/cmake/ospray_options.cmake +++ b/cmake/ospray_options.cmake @@ -20,7 +20,7 @@ SET(OSPRAY_VERSION_MAJOR 1) SET(OSPRAY_VERSION_MINOR 4) -SET(OSPRAY_VERSION_PATCH 2) +SET(OSPRAY_VERSION_PATCH 3) SET(OSPRAY_VERSION_GITHASH 0) IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git) FIND_PACKAGE(Git) From 369ddb3e78c4161a0531d4af929889fdf1fd6bf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=BCnther?= Date: Tue, 9 Jan 2018 17:13:07 +0100 Subject: [PATCH 8/8] Update documentation --- CHANGELOG.md | 27 ++-- README.md | 391 +++++++++------------------------------------------ 2 files changed, 82 insertions(+), 336 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 957159dadb..4d7f2a01e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Version History --------------- +### Changes in v1.4.3: + +- Several bug fixes + - Fixed potential issue with static initialization order + - Correct compiler flags for Debug config + - Spheres `postIntersect` shading is now 64-bit safer + ### Changes in v1.4.2: - Several cleanups and bug fixes @@ -50,7 +57,7 @@ Version History - Many robustness fixes for both the `mpi_offload` and `mpi_distributed` devices through improvements to the `mpi_common` and `mpi_maml` infrastructure libraries -- Major sample app cleanups: +- Major sample app cleanups - `ospray_sg` library is the new basis for building apps, which is a scenegraph implementation - Old (unused) libraries have been removed: miniSG, commandline, @@ -119,7 +126,7 @@ Version History ### Changes in v1.2.1: -- Various bugfixes related to MPI distributed rendering, ISPC issues +- Various bug fixes related to MPI distributed rendering, ISPC issues on Windows, and other build related issues ### Changes in v1.2.0: @@ -145,7 +152,7 @@ Version History - New API functions for committing parameters on Devices - Removed support for the first generation Intel® Xeon Phi™ coprocessor (codename Knights Corner) -- Other minor improvements, updates, and bugfixes: +- Other minor improvements, updates, and bug fixes - Updated Embree required version to v2.13.0 for added features and performance - New API function `ospDeviceSetErrorMsgFunc()` to specify a @@ -160,7 +167,7 @@ Version History ### Changes in v1.1.2: -- Various bugfixes related to normalization, epsilons and debug +- Various bug fixes related to normalization, epsilons and debug messages ### Changes in v1.1.1: @@ -256,7 +263,7 @@ Version History - Enhanced error messages when `ospLoadModule()` fails - Added `OSP_FB_RGBA32F` support in the `DistributedFrameBuffer` - Updated Glass shader in the path tracer -- Many miscellaneous cleanups, bugfixes, and improvements +- Many miscellaneous cleanups, bug fixes, and improvements ### Changes in v0.10.1: @@ -300,7 +307,7 @@ Version History - `ospray.h` header is now C99 compatible - Removed loaders module, functionality remains inside of `ospVolumeViewer` -- Many miscellaneous cleanups, bugfixes, and improvements: +- Many miscellaneous cleanups, bug fixes, and improvements - Fixed data distributed volume rendering bugs when using less blocks than workers - Fixes to CMake `find_package()` config @@ -323,11 +330,11 @@ Version History - Added `ospRemoveVolume()` API call - Added ability to render a subsection of the full view into the entire framebuffer in the perspective camera -- Many miscellaneous cleanups, bugfixes, and improvements: +- Many miscellaneous cleanups, bug fixes, and improvements - The depthbuffer is now correctly populated by in the "scivis" renderer - Updated default renderer to be "ao1" in ospModelViewer - - Trianglemesh postIntersect shading is now 64-bit safe + - Trianglemesh `postIntersect` shading is now 64-bit safe - Texture2D has been reworked, with many improvements and bug fixes - Fixed bug where MPI device would freeze while rendering frames with Intel TBB @@ -369,7 +376,7 @@ changes. - Soft shadows (light sources: sphere, cone, extended spot, quad) - Transparent shadows - Normal mapping (OBJ material) -- Volume rendering enhancements: +- Volume rendering enhancements - Expanded material support - Support for multiple lights - Support for double precision volumes @@ -428,7 +435,7 @@ changes. unify (and replace) the existing simpler GLUT-based viewers - Added new path tracing renderer (`ospray/render/pathtracer`), - roughly based on the Embree sample path tracer -- Added new features to the volume renderer: +- Added new features to the volume renderer - Gradient shading (lighting) - Implicit isosurfacing - Progressive refinement diff --git a/README.md b/README.md index 41956c4868..fd6518332a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ OSPRay ====== -This is release v1.4.2 of OSPRay. For changes and new features see the +This is release v1.4.3 of OSPRay. For changes and new features see the [changelog](CHANGELOG.md). Also visit http://www.ospray.org for more information. @@ -70,8 +70,8 @@ before you can build OSPRay you need the following prerequisites: Linux development tools. To build the example viewers, you should also have some version of OpenGL. - Additionally you require a copy of the [Intel® SPMD Program Compiler - (ISPC)](http://ispc.github.io). Please obtain a copy of the latest - binary release of ISPC (currently 1.9.1) from the [ISPC downloads + (ISPC)](http://ispc.github.io), version 1.9.1 or later. Please + obtain a release of ISPC from the [ISPC downloads page](https://ispc.github.io/downloads.html). The build system looks for ISPC in the `PATH` and in the directory right "next to" the checked-out OSPRay sources.[^1] Alternatively set the CMake variable @@ -207,7 +207,7 @@ document](http://www.sdvis.org/ospray/download/OSPRay_readme.pdf "OSPRay Documen For a deeper explanation of the concepts, design, features and performance of OSPRay also have a look at the IEEE Vis 2016 paper -"[OSPRay -- A CPU Ray Tracing Framework for Scientific +"[OSPRay – A CPU Ray Tracing Framework for Scientific Visualization](http://www.sdvis.org/ospray/download/talks/IEEEVis2016_OSPRay_paper.pdf)" (49MB, or get the [smaller version](http://www.sdvis.org/ospray/download/talks/IEEEVis2016_OSPRay_paper_small.pdf) @@ -701,91 +701,19 @@ or else an `OSPVolume` handle. The common parameters understood by all volume variants are summarized in the table below. - - ------ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Configuration parameters shared by all volume types.
TypeNameDefaultDescription
vec2fvoxelRangeminimum and maximum of the scalar values
boolgradientShadingEnabledfalsevolume is rendered with surface shading wrt. to normalized gradient
boolpreIntegrationfalseuse pre-integration for transfer function lookups
boolsingleShadetrueshade only at the point of maximum intensity
booladaptiveSamplingtrueadapt ray step size based on opacity
floatadaptiveScalar15modifier for adaptive step size
floatadaptiveMaxSamplingRate2maximum sampling rate for adaptive sampling
floatsamplingRate0.125sampling rate of the volume (this is the minimum step size for adaptive sampling)
vec3fspeculargray 0.3specular color for shading
vec3fvolumeClippingBoxLowerdisabledlower coordinate (in object-space) to clip the volume values
vec3fvolumeClippingBoxUpperdisabledupper coordinate (in object-space) to clip the volume values
+| Type | Name | Default| Description | +|:------|:------------------------|---------:|:----------------------------------------------------------------------------------| +| vec2f | voxelRange | | minimum and maximum of the scalar values | +| bool | gradientShadingEnabled | false| volume is rendered with surface shading wrt. to normalized gradient | +| bool | preIntegration | false| use pre-integration for [transfer function](#transfer-function) lookups | +| bool | singleShade | true| shade only at the point of maximum intensity | +| bool | adaptiveSampling | true| adapt ray step size based on opacity | +| float | adaptiveScalar | 15| modifier for adaptive step size | +| float | adaptiveMaxSamplingRate | 2| maximum sampling rate for adaptive sampling | +| float | samplingRate | 0.125| sampling rate of the volume (this is the minimum step size for adaptive sampling) | +| vec3f | specular | gray 0.3| specular color for shading | +| vec3f | volumeClippingBoxLower | disabled| lower coordinate (in object-space) to clip the volume values | +| vec3f | volumeClippingBoxUpper | disabled| upper coordinate (in object-space) to clip the volume values | : Configuration parameters shared by all volume types. @@ -832,79 +760,17 @@ this function. The common parameters understood by both structured volume variants are summarized in the table below. - - ------ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional configuration parameters for structured volumes.
TypeNameDefaultDescription
vec3idimensionsnumber of voxels in each dimension (x, y, z)
stringvoxelTypedata type of each voxel, currently supported are:
“uchar” (8 bit unsigned integer)
“short” (16 bit signed integer)
“ushort” (16 bit unsigned integer)
“float” (32 bit single precision floating point)
“double” (64 bit double precision floating point)
vec3fgridOrigin(0, 0, 0)origin of the grid in world-space
vec3fgridSpacing(1, 1, 1)size of the grid cells in world-space
+| Type | Name | Default| Description | +|:-------|:------------|------------:|:--------------------------------------------------| +| vec3i | dimensions | | number of voxels in each dimension $(x, y, z)$ | +| string | voxelType | | data type of each voxel, currently supported are: | +| | | | "uchar" (8 bit unsigned integer) | +| | | | "short" (16 bit signed integer) | +| | | | "ushort" (16 bit unsigned integer) | +| | | | "float" (32 bit single precision floating point) | +| | | | "double" (64 bit double precision floating point) | +| vec3f | gridOrigin | $(0, 0, 0)$| origin of the grid in world-space | +| vec3f | gridSpacing | $(1, 1, 1)$| size of the grid cells in world-space | : Additional configuration parameters for structured volumes. @@ -1318,73 +1184,16 @@ The call returns `NULL` if that type of renderer is not known, or else an `OSPRenderer` handle to the created renderer. General parameters of all renderers are - - ------ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Parameters understood by all renderers.
TypeNameDefaultDescription
OSPModelmodelthe model to render
OSPCameracamerathe camera to be used for rendering
OSPLight[]lightsdata array with handles of the lights
floatepsilon10-6ray epsilon to avoid self-intersections, relative to scene diameter
intspp1samples per pixel
intmaxDepth20maximum ray recursion depth
floatminContribution0.001sample contributions below this value will be neglected to speed-up rendering
floatvarianceThreshold0threshold for adaptive accumulation
+| Type | Name | Default| Description | +|:-------------|:------------------|--------:|:------------------------------------------------------------------------------| +| OSPModel | model | | the [model](#model) to render | +| OSPCamera | camera | | the [camera](#cameras) to be used for rendering | +| OSPLight\[\] | lights | | [data](#data) array with handles of the [lights](#lights) | +| float | epsilon | 10^-6^| ray epsilon to avoid self-intersections, relative to scene diameter | +| int | spp | 1| samples per pixel | +| int | maxDepth | 20| maximum ray recursion depth | +| float | minContribution | 0.001| sample contributions below this value will be neglected to speed-up rendering | +| float | varianceThreshold | 0| threshold for adaptive accumulation | : Parameters understood by all renderers. @@ -1720,38 +1529,11 @@ illuminating it from infinity. It is created by passing the type string `intensity`](#lights) the HDRI light supports the following special parameters: - - ----- - - - - - - - - - - - - - - - - - - - - - - - - -
Special parameters accepted by the HDRI light.
TypeNameDescription
vec3f(a)upup direction of the light in world-space
vec3f(a)dirdirection to which the center of the texture will be mapped to (analog to panoramic camera)
OSPTexture2Dmapenvironment map in latitude / longitude format
+| Type | Name | Description | +|:-------------|:-----|:-----------------------------------------------------------------------------------------------------------------| +| vec3f(a) | up | up direction of the light in world-space | +| vec3f(a) | dir | direction to which the center of the texture will be mapped to (analog to [panoramic camera](#panoramic-camera)) | +| OSPTexture2D | map | environment map in latitude / longitude format | : Special parameters accepted by the HDRI light. @@ -1953,7 +1735,7 @@ control of the color. To create an Alloy material pass the type string |:------|:----------|----------:|:--------------------------------------------| | vec3f | color | white 0.9| reflectivity at normal incidence (0 degree) | | vec3f | edgeColor | white| reflectivity at grazing angle (90 degree) | -| float | roughness | 0.1| roughness in \[0--1\], 0 is perfect mirror | +| float | roughness | 0.1| roughness in \[0–1\], 0 is perfect mirror | : Parameters of the Alloy material. @@ -2053,13 +1835,13 @@ texture. The supported texture formats are: | Name | Description | |:----------------------|:------------------------------------------------------------| -| OSP\_TEXTURE\_RGBA8 | 8 bit \[0--255\] linear components red, green, blue, alpha | +| OSP\_TEXTURE\_RGBA8 | 8 bit \[0–255\] linear components red, green, blue, alpha | | OSP\_TEXTURE\_SRGBA | 8 bit sRGB gamma encoded color components, and linear alpha | | OSP\_TEXTURE\_RGBA32F | 32 bit float components red, green, blue, alpha | -| OSP\_TEXTURE\_RGB8 | 8 bit \[0--255\] linear components red, green, blue | +| OSP\_TEXTURE\_RGB8 | 8 bit \[0–255\] linear components red, green, blue | | OSP\_TEXTURE\_SRGB | 8 bit sRGB gamma encoded components red, green, blue | | OSP\_TEXTURE\_RGB32F | 32 bit float components red, green, blue | -| OSP\_TEXTURE\_R8 | 8 bit \[0--255\] linear single component | +| OSP\_TEXTURE\_R8 | 8 bit \[0–255\] linear single component | | OSP\_TEXTURE\_R32F | 32 bit float single component | : Supported texture formats by `ospNewTexture2D`, i.e. valid constants @@ -2126,7 +1908,7 @@ corner) and `imageEnd` (upper right corner). This can be used, for example, to crop the image, to achieve asymmetrical view frusta, or to horizontally flip the image to view scenes which are specified in a left-handed coordinate system. Note that values outside the default -range of \[0--1\] are valid, which is useful to easily realize overscan +range of \[0–1\] are valid, which is useful to easily realize overscan or film gate, or to emulate a shifted sensor. #### Perspective Camera @@ -2138,58 +1920,15 @@ rendering, but no motion blur. It is created by passing the type string parameters](#cameras) understood by all cameras the perspective camera supports the special parameters listed in the table below. - - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Parameters accepted by the perspective camera.
TypeNameDescription
floatfovythe field of view (angle in degree) of the frame’s height
floataspectratio of width by height of the frame
floatapertureRadiussize of the aperture, controls the depth of field
floatfocusDistancedistance at where the image is sharpest when depth of field is enabled
boolarchitecturalvertical edges are projected to be parallel
intstereoMode0: no stereo (default), 1: left eye, 2: right eye, 3: side-by-side
floatinterpupillaryDistancedistance between left and right eye when stereo is enabled
+| Type | Name | Description | +|:------|:-----------------------|:-----------------------------------------------------------------------| +| float | fovy | the field of view (angle in degree) of the frame's height | +| float | aspect | ratio of width by height of the frame | +| float | apertureRadius | size of the aperture, controls the depth of field | +| float | focusDistance | distance at where the image is sharpest when depth of field is enabled | +| bool | architectural | vertical edges are projected to be parallel | +| int | stereoMode | 0: no stereo (default), 1: left eye, 2: right eye, 3: side-by-side | +| float | interpupillaryDistance | distance between left and right eye when stereo is enabled | : Parameters accepted by the perspective camera. @@ -2251,8 +1990,8 @@ by using the [general parameters](#cameras) understood by all cameras. ### Picking -To get the world-space position of the geometry (if any) seen at -\[0--1\] normalized screen-space pixel coordinates `screenPos` use +To get the world-space position of the geometry (if any) seen at \[0–1\] +normalized screen-space pixel coordinates `screenPos` use ``` {.cpp} void ospPick(OSPPickResult*, OSPRenderer, const vec2f &screenPos); @@ -2292,7 +2031,7 @@ Valid values are: | Name | Description | |:-----------------|:------------------------------------------------------------| | OSP\_FB\_NONE | framebuffer will not be mapped by the application | -| OSP\_FB\_RGBA8 | 8 bit \[0--255\] linear component red, green, blue, alpha | +| OSP\_FB\_RGBA8 | 8 bit \[0–255\] linear component red, green, blue, alpha | | OSP\_FB\_SRGBA | 8 bit sRGB gamma encoded color components, and linear alpha | | OSP\_FB\_RGBA32F | 32 bit float components red, green, blue, alpha | @@ -2343,8 +2082,8 @@ void ospFreeFrameBuffer(OSPFrameBuffer); Because OSPRay uses reference counting internally the framebuffer may not immediately be deleted at this time. -The application can map the given channel of a framebuffer -- and thus -access the stored pixel information -- via +The application can map the given channel of a framebuffer – and thus +access the stored pixel information – via ``` {.cpp} const void *ospMapFrameBuffer(OSPFrameBuffer, @@ -2581,7 +2320,7 @@ On Windows build it in the "build\_directory\\\$Configuration" with Running `ospTutorial` will create two images of two triangles, rendered with the Scientific Visualization renderer with full Ambient Occlusion. The first image `firstFrame.ppm` shows the result after one call to -`ospRenderFrame` -- jagged edges and noise in the shadow can be seen. +`ospRenderFrame` – jagged edges and noise in the shadow can be seen. Calling `ospRenderFrame` multiple times enables progressive refinement, resulting in antialiased edges and converged shadows, shown after ten frames in the second image `accumulatedFrames.ppm`. @@ -2601,7 +2340,7 @@ based on a prototype OSPRay scenegraph interface where its nodes are displayed in the GUI and can be manipulated interactively. For instance, simply run it as `ospExampleViewerSg teapot.obj`. -This application also functions as an OSPRay state debugger -- invalid +This application also functions as an OSPRay state debugger – invalid values will be shown in red up the hierarchy and won't change the viewer until corrected. You can also add new nodes where appropriate: for example, when "lights" is expanded right clicking on "lights" and typing @@ -2690,7 +2429,7 @@ at the [OSPRay Demos and Examples](http://www.ospray.org/demos.html) page. [^1]: For example, if OSPRay is in `~/Projects/ospray`, ISPC will also - be searched in `~/Projects/ispc-v1.9.1-linux` + be searched in `~/Projects/ispc-v1.9.2-linux` [^2]: The [HDRI Light](#hdri-light) is an exception, it knows about `intensity`, but not about `color`.