Adds support for building multiple BVH types in order to support using both CPU and OptiX devices for rendering simultaneously. Primitive packing for Embree and OptiX is now standalone, so it only needs to be run once and can be shared between the two. Additionally, BVH building was made a device call, so that each device backend can decide how to perform the building. The multi-device for instance creates a special multi-BVH that holds references to several sub-BVHs, one for each sub-device. Reviewed By: brecht, kevindietrich Differential Revision: https://developer.blender.org/D9718
118 lines
3.4 KiB
C++
118 lines
3.4 KiB
C++
/*
|
|
* Adapted from code copyright 2009-2010 NVIDIA Corporation
|
|
* Modifications Copyright 2011, Blender Foundation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "bvh/bvh.h"
|
|
|
|
#include "bvh/bvh2.h"
|
|
#include "bvh/bvh_embree.h"
|
|
#include "bvh/bvh_multi.h"
|
|
#include "bvh/bvh_optix.h"
|
|
|
|
#include "util/util_logging.h"
|
|
#include "util/util_progress.h"
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
/* BVH Parameters. */
|
|
|
|
const char *bvh_layout_name(BVHLayout layout)
|
|
{
|
|
switch (layout) {
|
|
case BVH_LAYOUT_NONE:
|
|
return "NONE";
|
|
case BVH_LAYOUT_BVH2:
|
|
return "BVH2";
|
|
case BVH_LAYOUT_EMBREE:
|
|
return "EMBREE";
|
|
case BVH_LAYOUT_OPTIX:
|
|
return "OPTIX";
|
|
case BVH_LAYOUT_MULTI_OPTIX:
|
|
case BVH_LAYOUT_MULTI_OPTIX_EMBREE:
|
|
return "MULTI";
|
|
case BVH_LAYOUT_ALL:
|
|
return "ALL";
|
|
}
|
|
LOG(DFATAL) << "Unsupported BVH layout was passed.";
|
|
return "";
|
|
}
|
|
|
|
BVHLayout BVHParams::best_bvh_layout(BVHLayout requested_layout, BVHLayoutMask supported_layouts)
|
|
{
|
|
const BVHLayoutMask requested_layout_mask = (BVHLayoutMask)requested_layout;
|
|
/* Check whether requested layout is supported, if so -- no need to do
|
|
* any extra computation.
|
|
*/
|
|
if (supported_layouts & requested_layout_mask) {
|
|
return requested_layout;
|
|
}
|
|
/* Some bit magic to get widest supported BVH layout. */
|
|
/* This is a mask of supported BVH layouts which are narrower than the
|
|
* requested one.
|
|
*/
|
|
BVHLayoutMask allowed_layouts_mask = (supported_layouts & (requested_layout_mask - 1));
|
|
/* If the requested layout is not supported, choose from the supported layouts instead. */
|
|
if (allowed_layouts_mask == 0) {
|
|
allowed_layouts_mask = supported_layouts;
|
|
}
|
|
/* We get widest from allowed ones and convert mask to actual layout. */
|
|
const BVHLayoutMask widest_allowed_layout_mask = __bsr(allowed_layouts_mask);
|
|
return (BVHLayout)(1 << widest_allowed_layout_mask);
|
|
}
|
|
|
|
/* BVH */
|
|
|
|
BVH::BVH(const BVHParams ¶ms_,
|
|
const vector<Geometry *> &geometry_,
|
|
const vector<Object *> &objects_)
|
|
: params(params_), geometry(geometry_), objects(objects_)
|
|
{
|
|
}
|
|
|
|
BVH *BVH::create(const BVHParams ¶ms,
|
|
const vector<Geometry *> &geometry,
|
|
const vector<Object *> &objects,
|
|
Device *device)
|
|
{
|
|
switch (params.bvh_layout) {
|
|
case BVH_LAYOUT_BVH2:
|
|
return new BVH2(params, geometry, objects);
|
|
case BVH_LAYOUT_EMBREE:
|
|
#ifdef WITH_EMBREE
|
|
return new BVHEmbree(params, geometry, objects);
|
|
#else
|
|
break;
|
|
#endif
|
|
case BVH_LAYOUT_OPTIX:
|
|
#ifdef WITH_OPTIX
|
|
return new BVHOptiX(params, geometry, objects, device);
|
|
#else
|
|
(void)device;
|
|
break;
|
|
#endif
|
|
case BVH_LAYOUT_MULTI_OPTIX:
|
|
case BVH_LAYOUT_MULTI_OPTIX_EMBREE:
|
|
return new BVHMulti(params, geometry, objects);
|
|
case BVH_LAYOUT_NONE:
|
|
case BVH_LAYOUT_ALL:
|
|
break;
|
|
}
|
|
LOG(DFATAL) << "Requested unsupported BVH layout.";
|
|
return NULL;
|
|
}
|
|
|
|
CCL_NAMESPACE_END
|