Add buffer to buffer copies

This commit is contained in:
Corentin Wallez
2017-06-12 18:12:29 -04:00
committed by Corentin Wallez
parent 367cb3515c
commit d84d107076
7 changed files with 101 additions and 0 deletions

View File

@@ -61,6 +61,12 @@ namespace d3d12 {
}
break;
case Command::CopyBufferToBuffer:
{
CopyBufferToBufferCmd* copy = commands.NextCommand<CopyBufferToBufferCmd>();
}
break;
case Command::CopyBufferToTexture:
{
CopyBufferToTextureCmd* copy = commands.NextCommand<CopyBufferToTextureCmd>();