libs/vkd3d: Partially implement d3d12_command_list_CopyTextureRegion().

This commit is contained in:
Józef Kucia
2016-10-08 14:31:57 +02:00
parent 99efb9abe3
commit 4153810c00
2 changed files with 49 additions and 2 deletions

View File

@@ -1739,7 +1739,7 @@ static void test_clear_render_target_view(void)
for (x = 0; x < resource_desc.Width; ++x)
{
unsigned int v = get_readback_uint(&rb, x, y);
todo(v == 0xff00ff00, "Got unexpected value 0x%08x at (%u, %u).\n", v, x, y);
ok(v == 0xff00ff00, "Got unexpected value 0x%08x at (%u, %u).\n", v, x, y);
}
}
release_resource_readback(&rb);