// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "priminfo.h" namespace embree { static const unsigned int RESERVED_NUM_SPATIAL_SPLITS_GEOMID_BITS = …; namespace isa { /*! mapping into bins */ template<size_t BINS> struct SpatialBinMapping { … }; /*! stores all information required to perform some split */ template<size_t BINS> struct SpatialBinSplit { … }; /*! stores all binning information */ template<size_t BINS, typename PrimRef> struct __aligned(64) SpatialBinInfo { … }; } }