UBO page reduced to 64 bytes for individual UBOs 68/258168/2
authoradam.b <adam.b@samsung.com>
Tue, 11 May 2021 16:38:41 +0000 (17:38 +0100)
committerAdam Bialogonski <adam.b@samsung.com>
Wed, 12 May 2021 15:30:12 +0000 (15:30 +0000)
Change-Id: I583244a8d8a7c00bddf84d5f53313345477781e9

dali/internal/render/renderers/render-renderer.cpp

index 6e2f213..eb1cdd4 100644 (file)
@@ -41,7 +41,7 @@ namespace Internal
 namespace
 {
 // Size of uniform buffer page used when resizing
-constexpr uint32_t UBO_PAGE_SIZE = 8192u;
+constexpr uint32_t UBO_PAGE_SIZE = 64;
 
 // UBO allocation threshold below which the UBO will shrink
 constexpr auto UBO_SHRINK_THRESHOLD = 0.75f;