Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-02-01 17:36:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-01 17:36:28 +0300
commit65ec7ec524e667ec95ce947a95f6273088dffee6 (patch)
tree68e47c42cefed72c4d360b5b2f473b35cafd96eb /intern/cycles/kernel/bvh
parent7b05b2564d8f7ebe915ba212c0dbaf40be568cfc (diff)
Cleanup: remove redundant, invalid info from headers
BF-admins agree to remove header information that isn't useful, to reduce noise. - BEGIN/END license blocks Developers should add non license comments as separate comment blocks. No need for separator text. - Contributors This is often invalid, outdated or misleading especially when splitting files. It's more useful to git-blame to find out who has developed the code. See P901 for script to perform these edits.
Diffstat (limited to 'intern/cycles/kernel/bvh')
-rw-r--r--intern/cycles/kernel/bvh/bvh_local.h1
-rw-r--r--intern/cycles/kernel/bvh/bvh_shadow_all.h1
-rw-r--r--intern/cycles/kernel/bvh/bvh_traversal.h1
-rw-r--r--intern/cycles/kernel/bvh/bvh_volume.h1
-rw-r--r--intern/cycles/kernel/bvh/bvh_volume_all.h1
-rw-r--r--intern/cycles/kernel/bvh/obvh_local.h1
-rw-r--r--intern/cycles/kernel/bvh/obvh_shadow_all.h1
-rw-r--r--intern/cycles/kernel/bvh/obvh_traversal.h1
-rw-r--r--intern/cycles/kernel/bvh/obvh_volume.h1
-rw-r--r--intern/cycles/kernel/bvh/obvh_volume_all.h1
-rw-r--r--intern/cycles/kernel/bvh/qbvh_local.h1
-rw-r--r--intern/cycles/kernel/bvh/qbvh_shadow_all.h1
-rw-r--r--intern/cycles/kernel/bvh/qbvh_traversal.h1
-rw-r--r--intern/cycles/kernel/bvh/qbvh_volume.h1
-rw-r--r--intern/cycles/kernel/bvh/qbvh_volume_all.h1
15 files changed, 0 insertions, 15 deletions
diff --git a/intern/cycles/kernel/bvh/bvh_local.h b/intern/cycles/kernel/bvh/bvh_local.h
index 8364bc3aa9a..3bdc9293a6c 100644
--- a/intern/cycles/kernel/bvh/bvh_local.h
+++ b/intern/cycles/kernel/bvh/bvh_local.h
@@ -36,7 +36,6 @@
* other parts of the scene.
*
* BVH_MOTION: motion blur rendering
- *
*/
#ifndef __KERNEL_GPU__
diff --git a/intern/cycles/kernel/bvh/bvh_shadow_all.h b/intern/cycles/kernel/bvh/bvh_shadow_all.h
index 64eb2f3f659..d8e089711ee 100644
--- a/intern/cycles/kernel/bvh/bvh_shadow_all.h
+++ b/intern/cycles/kernel/bvh/bvh_shadow_all.h
@@ -37,7 +37,6 @@
* BVH_INSTANCING: object instancing
* BVH_HAIR: hair curve rendering
* BVH_MOTION: motion blur rendering
- *
*/
#ifndef __KERNEL_GPU__
diff --git a/intern/cycles/kernel/bvh/bvh_traversal.h b/intern/cycles/kernel/bvh/bvh_traversal.h
index af9f04db0ba..76d4cab663d 100644
--- a/intern/cycles/kernel/bvh/bvh_traversal.h
+++ b/intern/cycles/kernel/bvh/bvh_traversal.h
@@ -40,7 +40,6 @@
* BVH_HAIR: hair curve rendering
* BVH_HAIR_MINIMUM_WIDTH: hair curve rendering with minimum width
* BVH_MOTION: motion blur rendering
- *
*/
ccl_device_noinline bool BVH_FUNCTION_FULL_NAME(BVH)(KernelGlobals *kg,
diff --git a/intern/cycles/kernel/bvh/bvh_volume.h b/intern/cycles/kernel/bvh/bvh_volume.h
index 12d4c5eb94a..b8257e3493e 100644
--- a/intern/cycles/kernel/bvh/bvh_volume.h
+++ b/intern/cycles/kernel/bvh/bvh_volume.h
@@ -36,7 +36,6 @@
*
* BVH_INSTANCING: object instancing
* BVH_MOTION: motion blur rendering
- *
*/
#ifndef __KERNEL_GPU__
diff --git a/intern/cycles/kernel/bvh/bvh_volume_all.h b/intern/cycles/kernel/bvh/bvh_volume_all.h
index 6205b9bcf7a..f3ca4058460 100644
--- a/intern/cycles/kernel/bvh/bvh_volume_all.h
+++ b/intern/cycles/kernel/bvh/bvh_volume_all.h
@@ -36,7 +36,6 @@
*
* BVH_INSTANCING: object instancing
* BVH_MOTION: motion blur rendering
- *
*/
#ifndef __KERNEL_GPU__
diff --git a/intern/cycles/kernel/bvh/obvh_local.h b/intern/cycles/kernel/bvh/obvh_local.h
index eb24a607caa..f449cefb335 100644
--- a/intern/cycles/kernel/bvh/obvh_local.h
+++ b/intern/cycles/kernel/bvh/obvh_local.h
@@ -19,7 +19,6 @@
* versions for each case without new features slowing things down.
*
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/obvh_shadow_all.h b/intern/cycles/kernel/bvh/obvh_shadow_all.h
index 8b739b3438a..10d5422c31c 100644
--- a/intern/cycles/kernel/bvh/obvh_shadow_all.h
+++ b/intern/cycles/kernel/bvh/obvh_shadow_all.h
@@ -21,7 +21,6 @@
* BVH_INSTANCING: object instancing
* BVH_HAIR: hair curve rendering
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/obvh_traversal.h b/intern/cycles/kernel/bvh/obvh_traversal.h
index 6bb19eb1ed9..5df7a3be515 100644
--- a/intern/cycles/kernel/bvh/obvh_traversal.h
+++ b/intern/cycles/kernel/bvh/obvh_traversal.h
@@ -22,7 +22,6 @@
* BVH_HAIR: hair curve rendering
* BVH_HAIR_MINIMUM_WIDTH: hair curve rendering with minimum width
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/obvh_volume.h b/intern/cycles/kernel/bvh/obvh_volume.h
index 80d09c59039..e66d499dccc 100644
--- a/intern/cycles/kernel/bvh/obvh_volume.h
+++ b/intern/cycles/kernel/bvh/obvh_volume.h
@@ -20,7 +20,6 @@
*
* BVH_INSTANCING: object instancing
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/obvh_volume_all.h b/intern/cycles/kernel/bvh/obvh_volume_all.h
index 87216127ddb..5476f79712a 100644
--- a/intern/cycles/kernel/bvh/obvh_volume_all.h
+++ b/intern/cycles/kernel/bvh/obvh_volume_all.h
@@ -20,7 +20,6 @@
*
* BVH_INSTANCING: object instancing
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/qbvh_local.h b/intern/cycles/kernel/bvh/qbvh_local.h
index 22d434a8737..661182e31b3 100644
--- a/intern/cycles/kernel/bvh/qbvh_local.h
+++ b/intern/cycles/kernel/bvh/qbvh_local.h
@@ -20,7 +20,6 @@
* other parts of the scene.
*
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/qbvh_shadow_all.h b/intern/cycles/kernel/bvh/qbvh_shadow_all.h
index 37606e10b92..dd977fb9e74 100644
--- a/intern/cycles/kernel/bvh/qbvh_shadow_all.h
+++ b/intern/cycles/kernel/bvh/qbvh_shadow_all.h
@@ -21,7 +21,6 @@
* BVH_INSTANCING: object instancing
* BVH_HAIR: hair curve rendering
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/qbvh_traversal.h b/intern/cycles/kernel/bvh/qbvh_traversal.h
index 35c6e3aeec9..40cd57aad34 100644
--- a/intern/cycles/kernel/bvh/qbvh_traversal.h
+++ b/intern/cycles/kernel/bvh/qbvh_traversal.h
@@ -22,7 +22,6 @@
* BVH_HAIR: hair curve rendering
* BVH_HAIR_MINIMUM_WIDTH: hair curve rendering with minimum width
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/qbvh_volume.h b/intern/cycles/kernel/bvh/qbvh_volume.h
index 7ec264e5f78..6790bfa6c83 100644
--- a/intern/cycles/kernel/bvh/qbvh_volume.h
+++ b/intern/cycles/kernel/bvh/qbvh_volume.h
@@ -20,7 +20,6 @@
*
* BVH_INSTANCING: object instancing
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)
diff --git a/intern/cycles/kernel/bvh/qbvh_volume_all.h b/intern/cycles/kernel/bvh/qbvh_volume_all.h
index dd603d79334..63d79b6fe34 100644
--- a/intern/cycles/kernel/bvh/qbvh_volume_all.h
+++ b/intern/cycles/kernel/bvh/qbvh_volume_all.h
@@ -20,7 +20,6 @@
*
* BVH_INSTANCING: object instancing
* BVH_MOTION: motion blur rendering
- *
*/
#if BVH_FEATURE(BVH_HAIR)