mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
Rename to drawArgsDescriptor, drawInfosDescriptor
This commit is contained in:
parent
a413eb0843
commit
e1cf2725ea
1 changed files with 3 additions and 3 deletions
|
@ -194,11 +194,11 @@ namespace dxvk::hud {
|
|||
std::memset(m_textBuffer->mapPtr(drawArgOffset + drawArgWriteSize), 0, drawArgsSize - drawArgWriteSize);
|
||||
|
||||
// Draw the actual text
|
||||
VkDescriptorBufferInfo textBufferDescriptor = m_textBuffer->getDescriptor(textSizeAligned, drawInfoSize).buffer;
|
||||
VkDescriptorBufferInfo drawBufferDescriptor = m_textBuffer->getDescriptor(drawArgOffset, drawArgWriteSize).buffer;
|
||||
VkDescriptorBufferInfo drawArgsDescriptor = m_textBuffer->getDescriptor(drawArgOffset, drawArgWriteSize).buffer;
|
||||
VkDescriptorBufferInfo drawInfosDescriptor = m_textBuffer->getDescriptor(textSizeAligned, drawInfoSize).buffer;
|
||||
|
||||
drawTextIndirect(ctx, getPipelineKey(dstView),
|
||||
drawBufferDescriptor, textBufferDescriptor,
|
||||
drawArgsDescriptor, drawInfosDescriptor,
|
||||
m_textBufferView->handle(), m_textDraws.size());
|
||||
|
||||
// Ensure all used resources are kept alive
|
||||
|
|
Loading…
Add table
Reference in a new issue