Merge branch 'scygan-fix_image_properties_tests' into 'vulkan-cts-1.0'
authorPyry Haulos <phaulos@google.com>
Tue, 14 Jun 2016 15:44:14 +0000 (15:44 +0000)
committerPyry Haulos <phaulos@google.com>
Tue, 14 Jun 2016 15:44:14 +0000 (15:44 +0000)
commit9b013d9b8836c961bb68c6cb1f4ddebc1ee6baa6
treeee7a1cb1ecd4123f3988d1f2bf3d9666cace96de
parentf13b15d5ff69adee2090930c4965281c95fe975f
parent83f90be9118a121b47f5e16f04029e205c68f994
Merge branch 'scygan-fix_image_properties_tests' into 'vulkan-cts-1.0'

Fix dEQP-VK.api.info.image_format_properties - TRANSIENT usage flag used with DMA flags

Spec:
```
VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT indicates that the ....
If this is set, then bits other than VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT,
VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT, and VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT must not be set.
```

The test tries the forbidden combination of usage flags, for example VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT + VK_IMAGE_USAGE_TRANSFER_SRC

See merge request !570