We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f46ff22 commit 8a9e68eCopy full SHA for 8a9e68e
Hydrogent/src/HnRenderDelegate.cpp
@@ -90,8 +90,9 @@ const pxr::TfTokenVector HnRenderDelegate::SupportedBPrimTypes = {
90
static RefCntAutoPtr<IBuffer> CreatePrimitiveAttribsCB(IRenderDevice* pDevice)
91
{
92
Uint64 Size = 65536;
93
- // Add extra space as buffer for the attributes buffer range.
94
- Size += 8192;
+
+ // Don't do this as this degrades dynamic memory utilization!
95
+ //Size += 8192; // Add extra space as buffer for the attributes buffer range.
96
97
USAGE Usage = USAGE_DYNAMIC;
98
if (pDevice->GetDeviceInfo().IsGLDevice())
0 commit comments