Revert "internal/graphicsdriver/directx: unmap constant buffers appropriately"

This reverts commit 085e6fe994.

Reason: compile error
This commit is contained in:
Hajime Hoshi 2022-07-15 03:45:52 +09:00
parent 085e6fe994
commit d4beacf27e

View File

@ -674,16 +674,12 @@ func (p *pipelineStates) newPipelineState(device *iD3D12Device, vsh, psh *iD3DBl
func (p *pipelineStates) releaseConstantBuffers(frameIndex int) { func (p *pipelineStates) releaseConstantBuffers(frameIndex int) {
for i := range p.constantBuffers[frameIndex] { for i := range p.constantBuffers[frameIndex] {
p.constantBuffers[frameIndex][i].Unmap(0, nil)
p.constantBuffers[frameIndex][i].Release() p.constantBuffers[frameIndex][i].Release()
p.constantBuffers[frameIndex][i] = nil p.constantBuffers[frameIndex][i] = nil
p.constantBufferMaps[frameIndex][i] = 0
} }
p.constantBuffers[frameIndex] = p.constantBuffers[frameIndex][:0] p.constantBuffers[frameIndex] = p.constantBuffers[frameIndex][:0]
p.constantBufferMaps[frameIndex] = p.constantBufferMaps[frameIndex][:0]
} }
func (p *pipelineStates) resetConstantBuffers(frameIndex int) { func (p *pipelineStates) resetConstantBuffers(frameIndex int) {
p.constantBuffers[frameIndex] = p.constantBuffers[frameIndex][:0] p.constantBuffers[frameIndex] = p.constantBuffers[frameIndex][:0]
p.constantBufferMaps[frameIndex] = p.constantBufferMaps[frameIndex][:0]
} }