如何部分更新DirectX 11.1中的常量缓冲区

How to partially update constant buffer in DirectX 11.1(如何部分更新DirectX 11.1中的常量缓冲区)
本文介绍了如何部分更新DirectX 11.1中的常量缓冲区的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试部分更新常量缓冲区(就像在OpenGL中一样),但总是收到奇怪的错误,因为我刚刚移植到DX11.1以实现常量缓冲区部分更新功能(我也支持它和CBOffting),这里是否遗漏了什么?

void DX11UniformBuffer::Update(void * data, unsigned int offset, unsigned int size)
{
    const D3D11_BOX sDstBox = { offset, 0U, 0U, size, 1U, 1U };
    DX11Context::GetContext()->UpdateSubresource1(buffer, 0, &sDstBox, data, 0, 0,D3D11_COPY_DISCARD);
    DX11Context::GetContext()->PSSetConstantBuffers1(0, 1, &buffer, &offset, &size);
}

等效于(在OpenGL中)

void GLUniformBuffer::Update(void * data, unsigned int offset, unsigned int size)
{
    glBindBuffer(GL_UNIFORM_BUFFER, buffer);
    glBufferSubData(GL_UNIFORM_BUFFER, offset, size, data);
    glBindBuffer(GL_UNIFORM_BUFFER, 0);
}

但是,我收到这些错误,并且没有绘制任何内容.

D3D11 ERROR: ID3D11DeviceContext::UpdateSubresource1: pDstBox is not a valid box, as the End coordinates must be greater than or equal to the Start. *pDstBox = { left:144, top:0, front:0, right:48, bottom:1, back:1 }. [ RESOURCE_MANIPULATION ERROR #288: UPDATESUBRESOURCE_INVALIDDESTINATIONBOX]

推荐答案

D3D11_BOXright的值是位置,而不是宽度。您需要将offsetsize相加才能得到right的值。sDstBox应初始化为:

const D3D11_BOX sDstBox = { offset, 0U, 0U, offset + size, 1U, 1U };

这篇关于如何部分更新DirectX 11.1中的常量缓冲区的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Qt Calling External Python Script(Qt调用外部Python脚本)
QTableView/QTableWidget grid stylesheet - grid line width(QTableView/QTableWidget网格样式表-网格线宽)
QML opens GUI window and console(QML打开图形用户界面窗口和控制台)
How to nicely quot;castquot; qint64 to int for QProgressBar(如何为QProgressBar巧妙地将qint64转换为int)
Is it possible to use an underlined letter as keyboard shortcut in Qt?(Qt中可以使用带下划线的字母作为键盘快捷键吗?)
How to disable selection highlighting in a QTableWidget(如何在QTableWidget中禁用选定内容突出显示)