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:
authorAlexander Gavrilov <angavrilov@gmail.com>2022-09-12 00:30:58 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2022-10-08 16:43:18 +0300
commitf61ff22967c5f3be2d5f661ce2d455e3e9d39f0a (patch)
treecd604a87c4f9538dc2e0656b26eb1586ed497a5f /source/blender/blenkernel/intern
parenta716e696584e90fc8ccb6b2af09fd15190af7f05 (diff)
Attribute Node: support accessing attributes of View Layer and Scene.
The attribute node already allows accessing attributes associated with objects and meshes, which allows changing the behavior of the same material between different objects or instances. The same idea can be extended to an even more global level of layers and scenes. Currently view layers provide an option to replace all materials with a different one. However, since the same material will be applied to all objects in the layer, varying the behavior between layers while preserving distinct materials requires duplicating objects. Providing access to properties of layers and scenes via the attribute node enables making materials with built-in switches or settings that can be controlled globally at the view layer level. This is probably most useful for complex NPR shading and compositing. Like with objects, the node can also access built-in scene properties, like render resolution or FOV of the active camera. Lookup is also attempted in World, similar to how the Object mode checks the Mesh datablock. In Cycles this mode is implemented by replacing the attribute node with the attribute value during sync, allowing constant folding to take the values into account. This means however that materials that use this feature have to be re-synced upon any changes to scene, world or camera. The Eevee version uses a new uniform buffer containing a sorted array mapping name hashes to values, with binary search lookup. The array is limited to 512 entries, which is effectively limitless even considering it is shared by all materials in the scene; it is also just 16KB of memory so no point trying to optimize further. The buffer has to be rebuilt when new attributes are detected in a material, so the draw engine keeps a table of recently seen attribute names to minimize the chance of extra rebuilds mid-draw. Differential Revision: https://developer.blender.org/D15941
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/object_dupli.cc28
1 files changed, 28 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/object_dupli.cc b/source/blender/blenkernel/intern/object_dupli.cc
index a56176b7d9b..306e508dc83 100644
--- a/source/blender/blenkernel/intern/object_dupli.cc
+++ b/source/blender/blenkernel/intern/object_dupli.cc
@@ -57,10 +57,12 @@
#include "DEG_depsgraph_query.h"
#include "BLI_hash.h"
+#include "DNA_world_types.h"
#include "NOD_geometry_nodes_log.hh"
#include "RNA_access.h"
#include "RNA_path.h"
+#include "RNA_prototypes.h"
#include "RNA_types.h"
using blender::Array;
@@ -1916,4 +1918,30 @@ bool BKE_object_dupli_find_rgba_attribute(
return false;
}
+bool BKE_view_layer_find_rgba_attribute(struct Scene *scene,
+ struct ViewLayer *layer,
+ const char *name,
+ float r_value[4])
+{
+ if (layer) {
+ PointerRNA layer_ptr;
+ RNA_pointer_create(&scene->id, &RNA_ViewLayer, layer, &layer_ptr);
+
+ if (find_rna_property_rgba(&layer_ptr, name, r_value)) {
+ return true;
+ }
+ }
+
+ if (find_rna_property_rgba(&scene->id, name, r_value)) {
+ return true;
+ }
+
+ if (scene->world && find_rna_property_rgba(&scene->world->id, name, r_value)) {
+ return true;
+ }
+
+ copy_v4_fl(r_value, 0.0f);
+ return false;
+}
+
/** \} */