Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(444)

Unified Diff: src/gpu/vk/GrVkPipelineState.cpp

Issue 1867973002: Limit the size of descriptor pools in vulkan (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/vk/GrVkPipelineState.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/vk/GrVkPipelineState.cpp
diff --git a/src/gpu/vk/GrVkPipelineState.cpp b/src/gpu/vk/GrVkPipelineState.cpp
index 5e3acf818a297f3bf62f0cd74934559df94c4486..3e442fb249b5c7d1b51a559156e8e3614e4186a4 100644
--- a/src/gpu/vk/GrVkPipelineState.cpp
+++ b/src/gpu/vk/GrVkPipelineState.cpp
@@ -409,7 +409,11 @@ void GrVkPipelineState::DescriptorPoolManager::getNewPool(GrVkGpu* gpu) {
if (fPool) {
fPool->unref(gpu);
SkASSERT(fMaxDescriptorSets < (SK_MaxU32 >> 1));
- fMaxDescriptorSets = fMaxDescriptorSets << 1;
+ if (fMaxDescriptorSets < kMaxDescSetLimit >> 1) {
+ fMaxDescriptorSets = fMaxDescriptorSets << 1;
+ } else {
+ fMaxDescriptorSets = kMaxDescSetLimit;
+ }
}
if (fMaxDescriptorSets) {
« no previous file with comments | « src/gpu/vk/GrVkPipelineState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698