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:
Diffstat (limited to 'source/blender/blenkernel/intern/pbvh_pixels.cc')
-rw-r--r--source/blender/blenkernel/intern/pbvh_pixels.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/pbvh_pixels.cc b/source/blender/blenkernel/intern/pbvh_pixels.cc
index db1a7514b15..a87a29019b3 100644
--- a/source/blender/blenkernel/intern/pbvh_pixels.cc
+++ b/source/blender/blenkernel/intern/pbvh_pixels.cc
@@ -77,6 +77,26 @@ void NodeData::build_pixels_gpu_buffer()
elem_len * sizeof(PackedPixelRow), elements.data(), GPU_USAGE_STATIC, __func__);
}
+void UDIMTilePixels::init_gpu_sub_tiles()
+{
+ BLI_rcti_init_minmax(&gpu_sub_tiles);
+ for (const PackedPixelRow &elements : pixel_rows) {
+ int2 subtile_from = int2(elements.start_image_coordinate / TEXTURE_STREAMING_TILE_SIZE);
+ int2 coord_to = int2(elements.start_image_coordinate) + int2(elements.num_pixels + 1, 1);
+ int2 subtile_to = int2(coord_to / TEXTURE_STREAMING_TILE_SIZE);
+
+ BLI_rcti_do_minmax_v(&gpu_sub_tiles, subtile_from);
+ BLI_rcti_do_minmax_v(&gpu_sub_tiles, subtile_to);
+ }
+}
+
+void NodeData::init_gpu_sub_tiles()
+{
+ for (UDIMTilePixels &tile : tiles) {
+ tile.init_gpu_sub_tiles();
+ }
+}
+
/**
* During debugging this check could be enabled.
* It will write to each image pixel that is covered by the PBVH.