// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "bvh_node_base.h" namespace embree { /*! BVHN Quantized Node */ template<int N> struct __aligned(8) QuantizedBaseNode_t { … }; template<typename NodeRef, int N> struct __aligned(8) QuantizedNode_t : public BaseNode_t<NodeRef, N>, QuantizedBaseNode_t<N> { … }; /*! BVHN Quantized Node */ template<int N> struct __aligned(8) QuantizedBaseNodeMB_t { … }; }