Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/kernel/bvh/bvh_types.h
| /* | /* | ||||
| * Copyright 2011-2013 Blender Foundation | * Copyright 2011-2013 Blender Foundation | ||||
| * | * | ||||
| * Licensed under the Apache License, Version 2.0 (the "License"); | * Licensed under the Apache License, Version 2.0 (the "License"); | ||||
| * you may not use this file except in compliance with the License. | * you may not use this file except in compliance with the License. | ||||
| * You may obtain a copy of the License at | * You may obtain a copy of the License at | ||||
| * | * | ||||
| * http://www.apache.org/licenses/LICENSE-2.0 | * http://www.apache.org/licenses/LICENSE-2.0 | ||||
| * | * | ||||
| * Unless required by applicable law or agreed to in writing, software | * Unless required by applicable law or agreed to in writing, software | ||||
| * distributed under the License is distributed on an "AS IS" BASIS, | * distributed under the License is distributed on an "AS IS" BASIS, | ||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #ifndef __BVH_TYPES__ | #pragma once | ||||
| #define __BVH_TYPES__ | |||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| /* Don't inline intersect functions on GPU, this is faster */ | /* Don't inline intersect functions on GPU, this is faster */ | ||||
| #ifdef __KERNEL_GPU__ | #ifdef __KERNEL_GPU__ | ||||
| # define ccl_device_intersect ccl_device_forceinline | # define ccl_device_intersect ccl_device_forceinline | ||||
| #else | #else | ||||
| # define ccl_device_intersect ccl_device_inline | # define ccl_device_intersect ccl_device_inline | ||||
| Show All 11 Lines | |||||
| #define BVH_NAME_JOIN(x, y) x##_##y | #define BVH_NAME_JOIN(x, y) x##_##y | ||||
| #define BVH_NAME_EVAL(x, y) BVH_NAME_JOIN(x, y) | #define BVH_NAME_EVAL(x, y) BVH_NAME_JOIN(x, y) | ||||
| #define BVH_FUNCTION_FULL_NAME(prefix) BVH_NAME_EVAL(prefix, BVH_FUNCTION_NAME) | #define BVH_FUNCTION_FULL_NAME(prefix) BVH_NAME_EVAL(prefix, BVH_FUNCTION_NAME) | ||||
| #define BVH_FEATURE(f) (((BVH_FUNCTION_FEATURES) & (f)) != 0) | #define BVH_FEATURE(f) (((BVH_FUNCTION_FEATURES) & (f)) != 0) | ||||
| CCL_NAMESPACE_END | CCL_NAMESPACE_END | ||||
| #endif /* __BVH_TYPES__ */ | |||||