Pyry Haulos [Tue, 13 Sep 2016 17:11:20 +0000 (17:11 +0000)]
CP: Check and enable VK_KHR_sampler_mirror_clamp_to_edge am:
66ee615c37 am:
b040934957
am:
e9ada378d5
Change-Id: I96a0fc9fc72a69c84cb19f0652098bea62caf3b9
Pyry Haulos [Tue, 13 Sep 2016 17:07:42 +0000 (17:07 +0000)]
CP: Check and enable VK_KHR_sampler_mirror_clamp_to_edge am:
66ee615c37
am:
b040934957
Change-Id: I0ca3db2495d8fadf1bc897b383a9c2ebc07a0104
Daniel Xie [Tue, 13 Sep 2016 17:05:19 +0000 (17:05 +0000)]
Merge changes I85492417,I93389a2c into nougat-cts-dev am:
37eaa88ac2 am:
a7dc5ef89b
am:
e081977eb5
Change-Id: I982707d42ff59124aa59213ed9d95df294a3650e
Pyry Haulos [Tue, 13 Sep 2016 17:05:05 +0000 (17:05 +0000)]
CP: Limit VkInstance count in object_management.multithreaded* am:
1735b7bcaa am:
d030a8fd2b
am:
ea33916bba
Change-Id: I1b3f227199af251fda81355fd550f3a55172f3d5
Pyry Haulos [Tue, 13 Sep 2016 17:04:47 +0000 (17:04 +0000)]
CP: Do not test VkDevice, VkInstance creation OOM paths in WSI tests am:
80ddee1f9b am:
96a5fefcf2
am:
37f3f35c88
Change-Id: I25e4329d5cca989ea3b862df7a2d9a381c1df86b
Daniel Xie [Tue, 13 Sep 2016 17:00:43 +0000 (17:00 +0000)]
Merge changes I85492417,I93389a2c into nougat-cts-dev am:
37eaa88ac2
am:
a7dc5ef89b
Change-Id: Ic518d88a1f22467db42280bcc5e0fc7d413e6c61
Pyry Haulos [Tue, 13 Sep 2016 17:00:41 +0000 (17:00 +0000)]
CP: Limit VkInstance count in object_management.multithreaded* am:
1735b7bcaa
am:
d030a8fd2b
Change-Id: Icb7564c2ab89b212636ad71ea39239deebcab983
Pyry Haulos [Tue, 13 Sep 2016 17:00:38 +0000 (17:00 +0000)]
CP: Do not test VkDevice, VkInstance creation OOM paths in WSI tests am:
80ddee1f9b
am:
96a5fefcf2
Change-Id: Icfbb32ba5e2e7e5dd2d80a0617cc0a31d9a1b8f6
Pyry Haulos [Tue, 13 Sep 2016 16:57:15 +0000 (16:57 +0000)]
CP: Check and enable VK_KHR_sampler_mirror_clamp_to_edge
am:
66ee615c37
Change-Id: I91d202db27ad1cf7cfb1c0efcea166daa4257f81
Daniel Xie [Tue, 13 Sep 2016 16:57:15 +0000 (16:57 +0000)]
Merge changes I85492417,I93389a2c into nougat-cts-dev
am:
37eaa88ac2
Change-Id: Ifd718e72afa57309ea88cfb09f9073cd87c1c116
Pyry Haulos [Tue, 13 Sep 2016 16:57:15 +0000 (16:57 +0000)]
CP: Limit VkInstance count in object_management.multithreaded*
am:
1735b7bcaa
Change-Id: I39a1830375fcf215ef30cfc4fbb8571c482f7a7b
Pyry Haulos [Tue, 13 Sep 2016 16:57:13 +0000 (16:57 +0000)]
CP: Do not test VkDevice, VkInstance creation OOM paths in WSI tests
am:
80ddee1f9b
Change-Id: I425d8b909cf1323888bf06293822fcb958050806
Daniel Xie [Tue, 13 Sep 2016 16:42:54 +0000 (16:42 +0000)]
Merge changes I85492417,I93389a2c into nougat-cts-dev
* changes:
CP: Limit VkInstance count in object_management.multithreaded*
CP: Do not test VkDevice, VkInstance creation OOM paths in WSI tests
Kenneth Graunke [Tue, 13 Sep 2016 01:53:19 +0000 (01:53 +0000)]
Fix internal format/type for 3D + depth/stencil negative API tests. am:
ae7f8e0a07 am:
15c4abf347
am:
eb043f5932
Change-Id: I2a615b105b8976f2e07e166525bd67beb728eafb
Kenneth Graunke [Tue, 13 Sep 2016 01:50:41 +0000 (01:50 +0000)]
Fix internal format/type for 3D + depth/stencil negative API tests. am:
ae7f8e0a07
am:
15c4abf347
Change-Id: I05892db403d9ea130de1619a407ecf2f352bc2ea
Kenneth Graunke [Tue, 13 Sep 2016 01:48:10 +0000 (01:48 +0000)]
Fix internal format/type for 3D + depth/stencil negative API tests.
am:
ae7f8e0a07
Change-Id: Iab6253127f05b53ac48d47f8f5372c2bff7ed187
Kenneth Graunke [Mon, 12 Sep 2016 19:37:08 +0000 (12:37 -0700)]
Fix internal format/type for 3D + depth/stencil negative API tests.
According to the ES 3.2 specification:
"Textures with a base internal format of DEPTH_COMPONENT, DEPTH_STENCIL
or STENCIL_INDEX are supported by texture image specification commands
only if target is TEXTURE_2D, TEXTURE_2D_MULTISAMPLE, TEXTURE_2D_ARRAY,
TEXTURE_2D_MULTISAMPLE_ARRAY, TEXTURE_CUBE_MAP or TEXTURE_CUBE_MAP_ARRAY.
Using these formats in conjunction with any other target will result in
an INVALID_OPERATION error."
This subtest tried to check the above error condition, but it specified
GL_DEPTH_STENCIL / GL_DEPTH_COMPONENT as format, rather than internalFormat.
Since the above text calls out "base internal format", we should specify
it as internalFormat.
We also change GL_DEPTH_STENCIL to use GL_UNSIGNED_INT_24_8 rather than
GL_UNSIGNED_BYTE, as that combination was illegal for a different reason
than the one the test intended to check.
Dan Albert [Fri, 9 Sep 2016 08:05:44 +0000 (08:05 +0000)]
Bump libdeqp to android-22. am:
e0ef7118f8 am:
ce83935903
am:
e695cc060c
Change-Id: I3181f4dba34c87d8aeb55a8b16a943c08e50a696
Dan Albert [Fri, 9 Sep 2016 08:02:43 +0000 (08:02 +0000)]
Bump libdeqp to android-22. am:
e0ef7118f8
am:
ce83935903
Change-Id: I4c531b447ff814480275313ca2560a254f5ff2bd
Dan Albert [Fri, 9 Sep 2016 07:59:13 +0000 (07:59 +0000)]
Bump libdeqp to android-22.
am:
e0ef7118f8
Change-Id: If02fbee27cd0efb1b8f9986015555d0fbeca0d53
Dan Albert [Thu, 8 Sep 2016 23:07:20 +0000 (16:07 -0700)]
Bump libdeqp to android-22.
The tests and APK are built with android-22.
Test: mm
Bug: None
Change-Id: I34a677c55443f8750098db1335919704b8b16010
Pyry Haulos [Thu, 8 Sep 2016 22:07:19 +0000 (22:07 +0000)]
Remove XML mustpass lists am:
af8270690a am:
0988065e4f
am:
ad823700e2
Change-Id: I2d241286de11da4b990915f02730cd3725df2ab1
Pyry Haulos [Thu, 8 Sep 2016 22:07:13 +0000 (22:07 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am:
42d91db0aa am:
eb419455ef
am:
0df9f6a487
Change-Id: I1844b339595a47396ee34e7625922e6716f45b52
Pyry Haulos [Thu, 8 Sep 2016 22:04:49 +0000 (22:04 +0000)]
Remove XML mustpass lists am:
af8270690a
am:
0988065e4f
Change-Id: Id2fb418780a8614852a42f7e7fd0102b5e0e1ae5
Pyry Haulos [Thu, 8 Sep 2016 22:04:43 +0000 (22:04 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am:
42d91db0aa
am:
eb419455ef
Change-Id: I6b2863ebc1b2d82b2f8f45d4cecec276e78b0e03
Pyry Haulos [Thu, 8 Sep 2016 22:02:13 +0000 (22:02 +0000)]
Remove XML mustpass lists
am:
af8270690a
Change-Id: Idf68478148dab81be2f0ff9e5dd1fa66d23684b3
Pyry Haulos [Thu, 8 Sep 2016 22:02:11 +0000 (22:02 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master
am:
42d91db0aa
Change-Id: If6c23776f35d966d652e23dd3704067a9c15c252
Pyry Haulos [Wed, 24 Aug 2016 22:19:40 +0000 (15:19 -0700)]
Remove XML mustpass lists
Android CTS no longer uses per-package XML test lists.
Change-Id: I5e0ed6f71b0ba36b9d9cefc563154a4768a40a3f
Pyry Haulos [Thu, 8 Sep 2016 20:15:50 +0000 (13:15 -0700)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master
Change-Id: I093c350e439e256a070c1bd7d199fafdb46bd2d8
Pyry Haulos [Thu, 8 Sep 2016 20:14:06 +0000 (13:14 -0700)]
Add new files to Android.mk
Change-Id: I45a16aba19e12533de3c60eb4a3c75f117c1410e
Pyry Haulos [Thu, 8 Sep 2016 18:31:12 +0000 (14:31 -0400)]
Merge "Add tests for dynamic indexing of push constants" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 18:20:57 +0000 (14:20 -0400)]
Merge "Add tests for simultaneous use of secondary command buffer" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 18:20:37 +0000 (14:20 -0400)]
Merge "Add scissoring tests" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 18:19:48 +0000 (14:19 -0400)]
Merge "Add new pipeline barrier tests to mustpass" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 18:19:32 +0000 (14:19 -0400)]
Merge "Fix wrong test in copies and blitting testcases" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 18:19:10 +0000 (14:19 -0400)]
Merge "dEQP-VK.pipeline.image.*: added test cases for 3D images with NPOT sizes." into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 18:18:36 +0000 (14:18 -0400)]
Merge "Extend shader built-in variable tests" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 18:18:14 +0000 (14:18 -0400)]
Merge "Multisampled depth/stencil attachment test" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 18:17:49 +0000 (14:17 -0400)]
Merge "Add tests for initialized and uninitialized cases." into vulkan-cts-1.0-dev
Maciej Jesionowski [Thu, 28 Jul 2016 12:20:15 +0000 (14:20 +0200)]
Add multisampled storage image load/store on a rendered image
New test:
- dEQP-VK.pipeline.multisample.storage_image.*
Fixes #439
Change-Id: If4d6d9511db5d1c6aa9e6d54ce04dcba8e1de5cd
Maciej Jesionowski [Wed, 20 Jul 2016 10:51:49 +0000 (12:51 +0200)]
Add multisampled image texel fetch test
New test:
- dEQP-VK.pipeline.multisample.sampled_image.*
Fixes #428
Change-Id: I947053c5fc48f7d479fab80a6fc31823da3e5c1a
Pyry Haulos [Thu, 8 Sep 2016 17:59:43 +0000 (13:59 -0400)]
Merge "dEQP-VK.pipeline.vertex_input: sequential attributes test" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 17:59:17 +0000 (13:59 -0400)]
Merge "dEQP-VK.pipeline: multisample interpolation tests" into vulkan-cts-1.0-dev
Pyry Haulos [Thu, 8 Sep 2016 17:38:24 +0000 (13:38 -0400)]
Merge "Build scripts: add support for NMake project generator" into vulkan-cts-1.0-dev
Slawomir Cygan [Thu, 11 Aug 2016 14:02:19 +0000 (16:02 +0200)]
Build scripts: add support for NMake project generator
Requires nmake.exe in PATH (try running from Visual Studio Command
Prompt, or use vcvars*.bat).
Change-Id: I2bfcfa46a5529066000745209673804b1863f1fc
Pyry Haulos [Mon, 29 Aug 2016 22:02:15 +0000 (15:02 -0700)]
Add new pipeline barrier tests to mustpass
Change-Id: Ibc499ad78c5a5d1268096d14033447192cc44552
Tobin Ehlis [Wed, 31 Aug 2016 18:49:07 +0000 (12:49 -0600)]
Add tests for simultaneous use of secondary command buffer
Fixes #335
Add simultaneousUseSecondaryBufferOnePrimaryBufferTest() test. This test
creates a single secondary command with SIMULTANEOUS_USE flag set and add
two instances of it to the same primary command buffer. Then verify that
each instance executes correctly.
Also add simultaneousUseSecondaryBufferTwoPrimaryBuffersTest(). Similar to
above test but same secondary command buffer is bound into two different
primary comman buffers that are then executed simultaneously.
In both cases the secondary command buffers are each atomically
incrementing a count from within a compute shader.
Update the mustpass lists.
Also made a few minor infrastructure additions:
Add a generic createDataBuffer() function to create a single buffer that
isn't built around a vec4 of color data.
Add a simpler createDescriptorSet() function that binds a results buffer
to binding 0 and an input uniform to binding 1.
Provide the compute result buffer initialization value in a parameter
which defaults to -1.0f. This allows flexibility for other tests that may
want a different default value, such as the new test mentioned above.
Change-Id: Icf6ebbac0e1975e1cf49f60e5aa8afb32f9885de
Cody Northrop [Wed, 31 Aug 2016 01:52:59 +0000 (19:52 -0600)]
Add tests for dynamic indexing of push constants
Fixes #465
Change-Id: Ia20d7a9906db300ec79be82c2c936e40e699d452
Kantoch [Thu, 28 Jul 2016 14:39:48 +0000 (16:39 +0200)]
dEQP-VK.pipeline: multisample interpolation tests
New test:
- dEQP-VK.pipeline.multisample_interpolation.*
Fixes #427
Change-Id: I235dc4781dff92e89ea645778e046d61b3909b32
Pyry Haulos [Thu, 1 Sep 2016 19:38:48 +0000 (19:38 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am:
f2ed7081f2 am:
0f428ec334
am:
0e39b0c893
Change-Id: Ied0b766da96a798cf1e71192eeec4cda3b8d07f0
Pyry Haulos [Thu, 1 Sep 2016 19:35:48 +0000 (19:35 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am:
f2ed7081f2
am:
0f428ec334
Change-Id: If413dd57f2c950aae1e9cf19e2194648a311700d
Pyry Haulos [Thu, 1 Sep 2016 19:32:50 +0000 (19:32 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master
am:
f2ed7081f2
Change-Id: I749d3e5f5cbf9bdaeebaa9ba267dc58fe00c8b02
Pyry Haulos [Thu, 1 Sep 2016 17:50:53 +0000 (10:50 -0700)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master
Change-Id: Ic526d403eb9f9134d62c43476860ef0ad9e044d1
Cody Northrop [Thu, 1 Sep 2016 16:49:59 +0000 (10:49 -0600)]
CMake: Use find_package to ensure getting python 2.7 instead of 3.x
Change-Id: I0be171e0579acb99428378fa847e619a0d858d55
Maciej Jesionowski [Thu, 4 Aug 2016 13:07:25 +0000 (15:07 +0200)]
Add scissoring tests
Scissoring tests based on GLES 2.0.
New test:
- dEQP-VK.fragment_operations.scissor.*
Fixes #452
Change-Id: I8bd7cb1dfc0889249d1f7bfb159f51defdf55a2d
Unsuk Jung [Tue, 30 Aug 2016 21:15:18 +0000 (21:15 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6 am:
3b524eaf98 am:
b5668f25eb am:
33a50549c0 am:
645b74d517 am:
782593182a am:
71dc8179e6
am:
c3b8da9cca
Change-Id: I08a2e548f4dc7444d8188748347960c201c7a6dd
Haixia Shi [Tue, 30 Aug 2016 21:15:16 +0000 (21:15 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a am:
da87d1a895 am:
fbd60126d8 am:
9f9397285c am:
b275e16083 am:
d32629cd9c am:
0c72826968
am:
1f944cd475
Change-Id: I8e20f8987f79a22d174a25f144f1745ec750538c
Unsuk Jung [Tue, 30 Aug 2016 21:12:42 +0000 (21:12 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6 am:
3b524eaf98 am:
b5668f25eb am:
33a50549c0 am:
645b74d517 am:
782593182a
am:
71dc8179e6
Change-Id: Ibee549e50c575a5b180996e0fcba01b6d38f1e86
Haixia Shi [Tue, 30 Aug 2016 21:12:42 +0000 (21:12 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a am:
da87d1a895 am:
fbd60126d8 am:
9f9397285c am:
b275e16083 am:
d32629cd9c
am:
0c72826968
Change-Id: I30f9945a54ea15cee7d98c0139cf6e8dfa6b0769
Unsuk Jung [Tue, 30 Aug 2016 21:09:43 +0000 (21:09 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6 am:
3b524eaf98 am:
b5668f25eb am:
33a50549c0 am:
645b74d517
am:
dfb887b2b8
Change-Id: I1077a8c8e00846066020ed905f386c5f07609a3d
Unsuk Jung [Tue, 30 Aug 2016 21:09:43 +0000 (21:09 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6 am:
3b524eaf98 am:
b5668f25eb am:
33a50549c0 am:
645b74d517
am:
782593182a
Change-Id: Idb03772bbb5715e3454a472c8e4407e858c53123
Haixia Shi [Tue, 30 Aug 2016 21:09:43 +0000 (21:09 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a am:
da87d1a895 am:
fbd60126d8 am:
9f9397285c am:
b275e16083
am:
0611665e73
Change-Id: I6ab7943dbdc8413ffad190eef5363a8ed10a9f16
Haixia Shi [Tue, 30 Aug 2016 21:09:42 +0000 (21:09 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a am:
da87d1a895 am:
fbd60126d8 am:
9f9397285c am:
b275e16083
am:
d32629cd9c
Change-Id: Iebb95b6a1518b4a2589e9b0e894c2a18327d8870
Unsuk Jung [Tue, 30 Aug 2016 21:07:21 +0000 (21:07 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6 am:
3b524eaf98 am:
b5668f25eb am:
33a50549c0
am:
645b74d517
Change-Id: I4b884a9a6a1b2355f395278f93bbf6d7b3204aba
Haixia Shi [Tue, 30 Aug 2016 21:07:21 +0000 (21:07 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a am:
da87d1a895 am:
fbd60126d8 am:
9f9397285c
am:
b275e16083
Change-Id: I99f84578f541506e3777a259a974699be3da7237
Unsuk Jung [Tue, 30 Aug 2016 21:06:42 +0000 (21:06 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6 am:
3b524eaf98 am:
b5668f25eb am:
33a50549c0
am:
645b74d517
Change-Id: I75c9aacb5f1c248523c27ebc6b0737da273ad54d
Haixia Shi [Tue, 30 Aug 2016 21:06:42 +0000 (21:06 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a am:
da87d1a895 am:
fbd60126d8 am:
9f9397285c
am:
b275e16083
Change-Id: I1ac2f6680ab142722ddd93b8ceb0ececb73bf43e
Unsuk Jung [Tue, 30 Aug 2016 21:04:16 +0000 (21:04 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6 am:
3b524eaf98 am:
b5668f25eb
am:
33a50549c0
Change-Id: I53640d8db345a91f4d5b71e4ee7b689915da033e
Unsuk Jung [Tue, 30 Aug 2016 21:04:14 +0000 (21:04 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
9ebe97f0a6 am:
7172745842 am:
9cb847787f am:
572542e25a
am:
5aa10fb844
Change-Id: I38965626d9da686fef76ae7dec93e44d277aa718
Haixia Shi [Tue, 30 Aug 2016 21:04:14 +0000 (21:04 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a am:
da87d1a895 am:
fbd60126d8
am:
9f9397285c
Change-Id: Ia93cba686bb0d6cda7ab48762c1a5ea49cb745e8
Haixia Shi [Tue, 30 Aug 2016 21:04:13 +0000 (21:04 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
635f454667 am:
cb0a43030f am:
aa3b3981d6 am:
1c5c354bea
am:
375105a676
Change-Id: Id6dab5be6529da4462ce63320d16c1bc0f312ac0
Unsuk Jung [Tue, 30 Aug 2016 21:01:11 +0000 (21:01 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
9ebe97f0a6 am:
7172745842 am:
9cb847787f
am:
572542e25a
Change-Id: Id8fe5f28839175ca7a1b2eb091f3bf9fc941119d
Haixia Shi [Tue, 30 Aug 2016 21:01:11 +0000 (21:01 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
635f454667 am:
cb0a43030f am:
aa3b3981d6
am:
1c5c354bea
Change-Id: If59721c7832d4cf6b445581b06f033b431c150c7
Unsuk Jung [Tue, 30 Aug 2016 21:01:10 +0000 (21:01 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6 am:
3b524eaf98
am:
b5668f25eb
Change-Id: Ib611d0835e5820100d4a7b72ec27822d65dd3a30
Haixia Shi [Tue, 30 Aug 2016 21:01:10 +0000 (21:01 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a am:
da87d1a895
am:
fbd60126d8
Change-Id: Ic9a257d5f7111e05747599ac94492a6677bbf613
Unsuk Jung [Tue, 30 Aug 2016 20:58:10 +0000 (20:58 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
26449babc6
am:
3b524eaf98
Change-Id: I7408b44cef1b4b55b22e422cfbd21ff490cee99b
Haixia Shi [Tue, 30 Aug 2016 20:58:10 +0000 (20:58 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
d7b53b803a
am:
da87d1a895
Change-Id: Iff769a80a773618376215027cf9979fd9c1689c5
Unsuk Jung [Tue, 30 Aug 2016 20:55:42 +0000 (20:55 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
9ebe97f0a6 am:
7172745842
am:
9cb847787f
Change-Id: Ic7841fc2cb15c69fb8c009a491c8eca61f4f6631
Haixia Shi [Tue, 30 Aug 2016 20:55:41 +0000 (20:55 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
635f454667 am:
cb0a43030f
am:
aa3b3981d6
Change-Id: I816ab80f8b94ee35d6f86a8d54bfb4dd230b3339
Unsuk Jung [Tue, 30 Aug 2016 20:53:49 +0000 (20:53 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
9ebe97f0a6 am:
7172745842
am:
229e5bb911
Change-Id: Ia3644b35e84b3301c57c8a5ca351db07a176fe6b
Haixia Shi [Tue, 30 Aug 2016 20:53:49 +0000 (20:53 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
635f454667 am:
cb0a43030f
am:
2b00aba040
Change-Id: I104f48820e55746bd240f17df4a73f3ce657aa45
Unsuk Jung [Tue, 30 Aug 2016 20:52:41 +0000 (20:52 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
9ebe97f0a6
am:
7172745842
Change-Id: I511cf23bf6d0741fa06006ce8cbfa2b52aa4a447
Unsuk Jung [Tue, 30 Aug 2016 20:52:40 +0000 (20:52 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338
am:
26449babc6
Change-Id: Iba176fd150b1ef2a99899889a0883839f6c1c5fe
Haixia Shi [Tue, 30 Aug 2016 20:52:40 +0000 (20:52 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409
am:
d7b53b803a
Change-Id: I8425b099bdc9ccad4411a2697bb862dbb4e9b4fd
Haixia Shi [Tue, 30 Aug 2016 20:52:40 +0000 (20:52 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
635f454667
am:
cb0a43030f
Change-Id: I42b6df861ebcd8b830504c2c10bec31b6d7dde3f
Unsuk Jung [Tue, 30 Aug 2016 20:50:13 +0000 (20:50 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338 am:
9ebe97f0a6
am:
7172745842
Change-Id: I5a7cbb994a288b08f9abdd51a5c2856a3e979557
Haixia Shi [Tue, 30 Aug 2016 20:50:13 +0000 (20:50 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409 am:
635f454667
am:
cb0a43030f
Change-Id: Ifbbdb622aecbf5e5b609b80fee8169dd7d6fadfb
Unsuk Jung [Tue, 30 Aug 2016 20:47:13 +0000 (20:47 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev am:
3aa5258338
am:
9ebe97f0a6
Change-Id: Ie18b88cd488f3a3ac39808551641ed271706c9d7
Unsuk Jung [Tue, 30 Aug 2016 20:47:12 +0000 (20:47 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev
am:
3aa5258338
Change-Id: I623faec4a5e3a54b19318e0e3f8b8c5c577e05c7
Haixia Shi [Tue, 30 Aug 2016 20:47:12 +0000 (20:47 +0000)]
Don't require supported binary formats in negative tests. am:
7cd59a4409
am:
635f454667
Change-Id: I08b511553f4770b9dca819f5d66a80f5f7bad189
Haixia Shi [Tue, 30 Aug 2016 20:47:11 +0000 (20:47 +0000)]
Don't require supported binary formats in negative tests.
am:
7cd59a4409
Change-Id: I29319033c246fdeb96aef437d9074bcaf2a80ab6
Unsuk Jung [Tue, 30 Aug 2016 20:44:03 +0000 (20:44 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev
am:
3aa5258338
Change-Id: I8cb9cdf8f87cacaa2cb4c586953f884a3cfee098
Haixia Shi [Tue, 30 Aug 2016 20:44:02 +0000 (20:44 +0000)]
Don't require supported binary formats in negative tests.
am:
7cd59a4409
Change-Id: If08ea28912fe10ddc570841c8862d0918b1c224d
Unsuk Jung [Tue, 30 Aug 2016 20:39:55 +0000 (20:39 +0000)]
Merge "Don't require supported binary formats in negative tests." into marshmallow-cts-dev
Kalle Raita [Tue, 30 Aug 2016 20:27:39 +0000 (20:27 +0000)]
Merge "Use empty region when buffer age is not supported" am:
04ff065bb8 am:
bcf725ead2
am:
714643aa8f
Change-Id: Ie60707f62f9cdbf79707af9f95d1f50d8b627601
Kalle Raita [Tue, 30 Aug 2016 20:25:08 +0000 (20:25 +0000)]
Merge "Use empty region when buffer age is not supported" am:
04ff065bb8
am:
bcf725ead2
Change-Id: I28e58c3985925ffeeaa80aa8ee2c68b0a5c62315
Kalle Raita [Tue, 30 Aug 2016 20:22:10 +0000 (20:22 +0000)]
Merge "Use empty region when buffer age is not supported"
am:
04ff065bb8
Change-Id: I85b89c53c1fd4c3d1c0e660eff4cc6cb48c80943
Kalle Raita [Tue, 30 Aug 2016 20:09:31 +0000 (20:09 +0000)]
Merge "Use empty region when buffer age is not supported"
Pyry Haulos [Tue, 30 Aug 2016 18:17:28 +0000 (11:17 -0700)]
Merge gerrit/vulkan-cts-1.0.1 into gerrit/vulkan-cts-1.0-dev
Change-Id: Id91a7898a30bf08bf992e89b597f73e336494252
Gabor Abraham [Tue, 19 Jul 2016 14:07:10 +0000 (16:07 +0200)]
Add tests for initialized and uninitialized cases.
Change-Id: I0eaddc7d5ebafc4532536d810bf4b30b38985d19