platform/upstream/VK-GL-CTS.git
6 years agoAdd negative OES_sample_variables tests
Michael Hadley [Wed, 12 Jul 2017 17:13:43 +0000 (17:13 +0000)]
Add negative OES_sample_variables tests
am: d30cb29294

Change-Id: Ia45069e6615bc288c0012baa898a9988e4a47fe4

6 years agoAdd new compute negative coverage tests
John Richardson [Wed, 12 Jul 2017 17:13:40 +0000 (17:13 +0000)]
Add new compute negative coverage tests
am: db4a886f3f

Change-Id: I21936949454726f533cbb00c50bf7676cdfc3934

6 years agoAdd new EGL enum negative case to robustness tests
John Richardson [Wed, 12 Jul 2017 17:13:38 +0000 (17:13 +0000)]
Add new EGL enum negative case to robustness tests
am: c77b3cf9f3

Change-Id: If855842a36b3ff75983385b7d41fb18ad8027c07

6 years agoAdd negative sRGB texture/sampler API tests
Michael Hadley [Wed, 12 Jul 2017 17:13:36 +0000 (17:13 +0000)]
Add negative sRGB texture/sampler API tests
am: a237c0c9ac

Change-Id: Ibbca047e6bc921aa9b4c010c74c0cd3f7b1983c3

6 years agoFix DrawRangeElementsBaseVertex tests with negative basevertex
Alexander Galazin [Wed, 12 Jul 2017 17:13:33 +0000 (17:13 +0000)]
Fix DrawRangeElementsBaseVertex tests with negative basevertex
am: bf0b29365e

Change-Id: Ibb0b8fc9cb897a93c64a3ce4fe68fd32a10c9974

6 years agoAdd new draw elements base vertex tests
John Richardson [Wed, 12 Jul 2017 17:13:29 +0000 (17:13 +0000)]
Add new draw elements base vertex tests
am: 3c865084eb

Change-Id: I4d86b9e26e8e7bed25fbc28322e5f26af863b2ca

6 years agoFix typo in framebuffer_srgb_unsupported_enum
Pyry Haulos [Wed, 12 Jul 2017 17:13:26 +0000 (17:13 +0000)]
Fix typo in framebuffer_srgb_unsupported_enum
am: b46d559e07

Change-Id: Idd1432ebb3645fb99ffaab3a30b97e79a84a7697

6 years agoAdd sRGB write decode negative case
John Richardson [Wed, 12 Jul 2017 17:13:22 +0000 (17:13 +0000)]
Add sRGB write decode negative case
am: 6644e7bfef

Change-Id: I891ebd32dba50da03cded87bd8590b0ef3da86e4

6 years agoAdd sRGB write decode tests
Michael Hadley [Wed, 12 Jul 2017 17:13:18 +0000 (17:13 +0000)]
Add sRGB write decode tests
am: 50d8f31f52

Change-Id: I6bdff6bf5586edf15d05fad9a0a8c39fc54b5dce

6 years agoAdd negative OES_sample_variables tests
Michael Hadley [Tue, 14 Mar 2017 15:42:34 +0000 (15:42 +0000)]
Add negative OES_sample_variables tests

New Tests:
- dEQP-GLES31.functional.debug.negative_coverage.callbacks.oes_sample_variables.*
- dEQP-GLES31.functional.debug.negative_coverage.log.oes_sample_variables.*
- dEQP-GLES31.functional.debug.negative_coverage.get_error.oes_sample_variables.*

Change-Id: I83bf9b48ca0ac7133419099b1a54ebc4d1cacf20

6 years agoAdd new compute negative coverage tests
John Richardson [Mon, 6 Feb 2017 11:28:21 +0000 (11:28 +0000)]
Add new compute negative coverage tests

Test groups added to:
- dEQP-GLES31.functional.debug.negative_coverage.*.compute (new)

New tests:
- program_not_active

- invalid_program_query
- invalid_dispatch_compute_indirect
- invalid_maximum_work_group_counts
- invalid_maximum_work_group_sizes
- invalid_layout_qualifiers
- invalid_write_built_in_constants

- exceed_uniform_block_limit
- exceed_shader_storage_block_limit
- exceed_texture_image_units_limit
- exceed_image_uniforms_limit
- exceed_shared_memory_size_limit
- exceed_uniform_components_limit
- exceed_atomic_counter_buffer_limit
- exceed_atomic_counters_limit

Change-Id: Ifd798652df3b138e174c1d9408b6ecdb003ce7f9

6 years agoAdd new EGL enum negative case to robustness tests
John Richardson [Wed, 29 Mar 2017 13:19:56 +0000 (14:19 +0100)]
Add new EGL enum negative case to robustness tests

New test case for verifying EGL versions < 1.5 do not accept
EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY enum in their attribute
list when creating an EGL context.

Test group:
- dEQP-EGL.functional.robustness.negative_context

New tests:
- invalid_notification_strategy_enum

Change-Id: I6027e880a2e3a97dfaa218c7b094ea727afcc996

6 years agoAdd negative sRGB texture/sampler API tests
Michael Hadley [Wed, 7 Dec 2016 16:11:05 +0000 (16:11 +0000)]
Add negative sRGB texture/sampler API tests

Added sRGB tests to the following:
- dEQP-GLES31.functional.debug.negative_coverage.callbacks.texture.*
- dEQP-GLES31.functional.debug.negative_coverage.callbacks.shader.*

Change-Id: I1ebd5a95c8605a39e4bbb5b4516d0f7b8c11898e

6 years agoFix DrawRangeElementsBaseVertex tests with negative basevertex
Alexander Galazin [Tue, 9 May 2017 08:44:12 +0000 (10:44 +0200)]
Fix DrawRangeElementsBaseVertex tests with negative basevertex

DrawRangeElementsBaseVertex tests with negative basevertex call
glDrawRangeElementsBaseVertex with start = 0 and basevertex = -1.
According to the spec: If no element array buffer is bound, the vertex ID of
the ith element transferred is indices[i] + basevertex...
If the vertex ID is larger than the maximum value representable by type,
it should behave as if the calculation were upconverted to 32-bit unsigned
integers (with wrapping on overflow conditions).
Behavior of DrawElementsOneInstance is undefined if the vertex ID is negative
for any element, and should be handled as described in section 6.4.

This change ensures that indexMin + baseVertex will be zero or positive value.

Components: AOSP

Affects:
dEQP-GLES31.functional.draw_base_vertex.draw_range_elements_base_vertex.base_vertex.index_neg_byte
dEQP-GLES31.functional.draw_base_vertex.draw_range_elements_base_vertex.base_vertex.index_neg_short
dEQP-GLES31.functional.draw_base_vertex.draw_range_elements_base_vertex.base_vertex.index_neg_int

Change-Id: I07a9e6bc60d4340784d400b5087bb8fff01f0e57

6 years agoAdd new draw elements base vertex tests
John Richardson [Tue, 14 Feb 2017 09:27:14 +0000 (09:27 +0000)]
Add new draw elements base vertex tests

New tests for EXT_draw_elements_base_vertex extension
exercising the following draw calls

- DrawElementsBaseVertex()
- DrawRangeElementsBaseVertex()
- DrawElementsInstancedBaserVertex()

New test groups:
- dEQP-GLES31.functional.draw_elements_base_vertex.*

New tests:
- indices.*
- base_vertex.*
- builtin_variable.*
- points.*
- triangles.*
- triangle_fan.*
- triangle_strip.*
- lines.*
- line_strip.*
- line_loop.*

Extend dEQP-GLES31.functional.debug.negative_coverage.callbacks.vertex_array.*
tests to include additional mapping and mismatched primitive mode
errors for base vertex draw calls.

New tests:
- *.primitive_mode_mismatch
- *.invalid_map

Change-Id: Iefc9bcddd3fe8831d2bb20f2e46d06f92daa6d6b

6 years agoFix typo in framebuffer_srgb_unsupported_enum
Pyry Haulos [Mon, 3 Apr 2017 15:32:07 +0000 (08:32 -0700)]
Fix typo in framebuffer_srgb_unsupported_enum

Test case was not assigning gl.getError() return value into a variable
causing tests to always fail on implementations that don't support ES3.2
or GL_EXT_sRGB_write_control.

Affects:

dEQP-GLES31.functional.fbo.srgb_write_control.framebuffer_srgb_unsupported_enum

Change-Id: Iafc38b8152f3371ce8c016c4f70feb2bb4604c69

6 years agoAdd sRGB write decode negative case
John Richardson [Thu, 30 Mar 2017 14:11:43 +0000 (15:11 +0100)]
Add sRGB write decode negative case

Test to check drivers that don't expose EXT_sRGB_write control return
GL_INVALID_ENUM for related gl calls.

New Tests:
- dEQP-GLES31.functional.fbo.srgb_write_control.framebuffer_srgb_unsupported_enum

Change-Id: I605f70894ead6e5dd317a340d061dcec9a6180c8

6 years agoAdd sRGB write decode tests
Michael Hadley [Wed, 8 Mar 2017 13:28:09 +0000 (13:28 +0000)]
Add sRGB write decode tests

New Tests:
- dEQP-GLES31.functional.fbo.srgb_write_control.*

Change-Id: Ieaaee4c7dc49cc530d8fc42a060e40c706d86e5c

6 years agox11_egl: use quotes to include glesv1_cm directories
Juan A. Suarez Romero [Fri, 30 Jun 2017 22:49:05 +0000 (22:49 +0000)]
x11_egl: use quotes to include glesv1_cm directories
am: f5e7ab6b79

Change-Id: Ic2526cda1127a8e6884676beb4cbb8b93940aab7

6 years agox11_egl: use quotes to include glesv1_cm directories
Juan A. Suarez Romero [Fri, 30 Jun 2017 12:22:35 +0000 (14:22 +0200)]
x11_egl: use quotes to include glesv1_cm directories

Modifying the CMAKE_EXE_LINKER_FLAGS requires to set the new options
between quotes.

Otherwise, cmake will join the elements with semicolons, generating
incorrect linker flags.

Test: cmake . -DDEQP_TARGET=x11_egl && make
Change-Id: I4d95dc37b6d91ab787b9c2e5568cbe2f08dd472b
Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>
7 years agoMerge "Remove EGL gles1.rgb565_window from mustpass" am: 7bff163e7f
Pyry Haulos [Wed, 14 Jun 2017 01:56:11 +0000 (01:56 +0000)]
Merge "Remove EGL gles1.rgb565_window from mustpass" am: 7bff163e7f
am: 8d0d1e55f9

Change-Id: Ie03d8a1b9bf46da653da489be791743625618247

7 years agoMerge "Remove EGL gles1.rgb565_window from mustpass"
Pyry Haulos [Wed, 14 Jun 2017 01:53:10 +0000 (01:53 +0000)]
Merge "Remove EGL gles1.rgb565_window from mustpass"
am: 7bff163e7f

Change-Id: I6cf0daeb9c55582df939fca37bf48a383423e17d

7 years agoMerge "Remove EGL gles1.rgb565_window from mustpass"
Treehugger Robot [Wed, 14 Jun 2017 01:43:04 +0000 (01:43 +0000)]
Merge "Remove EGL gles1.rgb565_window from mustpass"

7 years agoTouch watchdog before freeing objs in max_concurrent am: 815781b777
Pyry Haulos [Wed, 14 Jun 2017 01:34:11 +0000 (01:34 +0000)]
Touch watchdog before freeing objs in max_concurrent am: 815781b777
am: 6cbc014cfb

Change-Id: I78120d1a74741c1fbf2a157330ac736002102398

7 years agoTouch watchdog before freeing objs in max_concurrent
Pyry Haulos [Wed, 14 Jun 2017 01:30:08 +0000 (01:30 +0000)]
Touch watchdog before freeing objs in max_concurrent
am: 815781b777

Change-Id: I1a868dfb1fe436e91e785e5e41bae4c61fb19d05

7 years agoMerge "Remove EGL gles1.rgb565_window from mustpass" into oc-dev
Pyry Haulos [Tue, 13 Jun 2017 23:37:58 +0000 (23:37 +0000)]
Merge "Remove EGL gles1.rgb565_window from mustpass" into oc-dev
am: 840e33e440

Change-Id: Icafa3054e8f06d3c5f7fdab947a2c9402ac3e5dc

7 years agoRemove EGL gles1.rgb565_window from mustpass
Pyry Haulos [Tue, 13 Jun 2017 21:08:33 +0000 (14:08 -0700)]
Remove EGL gles1.rgb565_window from mustpass

Bug: 30041221
Change-Id: Idc8e3d1d78c568fa8d4209c61eaec52ca5696356
(cherry picked from commit 22eb25c58f0a1aa1de401a38778471c8b6700ffd)

7 years agoTouch watchdog before freeing objs in max_concurrent
Pyry Haulos [Wed, 7 Jun 2017 22:58:05 +0000 (15:58 -0700)]
Touch watchdog before freeing objs in max_concurrent

Affects:
dEQP-VK.api.object_management.max_concurrent.*

Components: Vulkan
Google bug: 37515046

Change-Id: I57eb68764a55b5dceeb3e2676b8b1b298c0ff67e
(cherry picked from commit 252fb76fec02af6e2281da3bc9eea4e0d7972f12)

7 years agoMerge "Remove EGL gles1.rgb565_window from mustpass" into oc-dev
TreeHugger Robot [Tue, 13 Jun 2017 23:25:24 +0000 (23:25 +0000)]
Merge "Remove EGL gles1.rgb565_window from mustpass" into oc-dev

7 years agoMerge "Touch watchdog before freeing objs in max_concurrent" into oc-dev
Pyry Haulos [Tue, 13 Jun 2017 23:16:52 +0000 (23:16 +0000)]
Merge "Touch watchdog before freeing objs in max_concurrent" into oc-dev
am: 47e683efe5

Change-Id: I2aa73621947b61f99a4419ae9194547df56bfbef

7 years agoMerge "Touch watchdog before freeing objs in max_concurrent" into oc-dev
TreeHugger Robot [Tue, 13 Jun 2017 22:56:24 +0000 (22:56 +0000)]
Merge "Touch watchdog before freeing objs in max_concurrent" into oc-dev

7 years agoRemove EGL gles1.rgb565_window from mustpass
Pyry Haulos [Tue, 13 Jun 2017 21:08:33 +0000 (14:08 -0700)]
Remove EGL gles1.rgb565_window from mustpass

Bug: 30041221
Change-Id: Idc8e3d1d78c568fa8d4209c61eaec52ca5696356

7 years agoSkip OOB SSBO fragment tests for ES3.1 GPUs
Alexander Galazin [Sun, 11 Jun 2017 08:21:38 +0000 (08:21 +0000)]
Skip OOB SSBO fragment tests for ES3.1 GPUs
am: 66241e9dbb

Change-Id: I247693ae9d2858d3e7a296edc5f3019d430144df

7 years agoSkip OOB SSBO fragment tests for ES3.1 GPUs am: f5fc3c8409
Alexander Galazin [Fri, 9 Jun 2017 23:42:37 +0000 (23:42 +0000)]
Skip OOB SSBO fragment tests for ES3.1 GPUs am: f5fc3c8409
am: ea27c20fd2

Change-Id: I5c4437ad2bb75826a8344c4b96c77e4dd23a349c

7 years agoSkip OOB SSBO fragment tests for ES3.1 GPUs
Alexander Galazin [Fri, 9 Jun 2017 23:41:05 +0000 (23:41 +0000)]
Skip OOB SSBO fragment tests for ES3.1 GPUs
am: f5fc3c8409

Change-Id: Iae998853c1031e4419b9db10cdc0d10bf1160b37

7 years agoSkip OOB SSBO fragment tests for ES3.1 GPUs
Alexander Galazin [Fri, 9 Jun 2017 14:26:32 +0000 (16:26 +0200)]
Skip OOB SSBO fragment tests for ES3.1 GPUs

GPUs supporting GLES 3.1 may expose 0 SSBOs in fragment shaders.
This change extends fix made in cf65c56f.

Google bug: 36891454

Components: AOSP

Affects:
dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds*.shader_storage_block.fragment

Change-Id: I1d821198d3dba3d3ad1e6b25758d0d434bf08a30
(cherry picked from commit f5fc3c8409969bb0afc5487f82ed883cf6566896)

7 years agoSkip OOB SSBO fragment tests for ES3.1 GPUs
Alexander Galazin [Fri, 9 Jun 2017 14:26:32 +0000 (16:26 +0200)]
Skip OOB SSBO fragment tests for ES3.1 GPUs

GPUs supporting GLES 3.1 may expose 0 SSBOs in fragment shaders.
This change extends fix made in cf65c56f.

Google bug: 36891454

Components: AOSP

Affects:
dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds*.shader_storage_block.fragment

Change-Id: I1d821198d3dba3d3ad1e6b25758d0d434bf08a30

7 years agoTouch watchdog before freeing objs in max_concurrent
Pyry Haulos [Wed, 7 Jun 2017 22:58:05 +0000 (15:58 -0700)]
Touch watchdog before freeing objs in max_concurrent

Affects:
dEQP-VK.api.object_management.max_concurrent.*

Components: Vulkan
Google bug: 37515046

Change-Id: I57eb68764a55b5dceeb3e2676b8b1b298c0ff67e

7 years agoMerge "Ignore A channel in EGL RGB5_A1 clear color tests" into oc-dev
Pyry Haulos [Wed, 7 Jun 2017 00:17:52 +0000 (00:17 +0000)]
Merge "Ignore A channel in EGL RGB5_A1 clear color tests" into oc-dev
am: 49883d1448

Change-Id: I84a9b86b1dfe7f963b3992ccfecea78909872770

7 years agoMerge "Ignore A channel in EGL RGB5_A1 clear color tests" into oc-dev
Pyry Haulos [Wed, 7 Jun 2017 00:12:19 +0000 (00:12 +0000)]
Merge "Ignore A channel in EGL RGB5_A1 clear color tests" into oc-dev

7 years agofix DEQP AndroidTest.xml generation script
Guang Zhu [Tue, 6 Jun 2017 23:27:34 +0000 (23:27 +0000)]
fix DEQP AndroidTest.xml generation script
am: a60033dd24

Change-Id: I6bf21989870a6340ed6948a232766ed18d35ad12

7 years agoIgnore A channel in EGL RGB5_A1 clear color tests am: 9da1b45a8e am: 4e33c51c88
Alexander Galazin [Tue, 6 Jun 2017 21:15:53 +0000 (21:15 +0000)]
Ignore A channel in EGL RGB5_A1 clear color tests am: 9da1b45a8e am: 4e33c51c88
am: bf0988368a

Change-Id: I5e9d96ed89160a81be0a8c7acda446c4a3d9d54a

7 years agoIgnore A channel in EGL RGB5_A1 clear color tests am: 9da1b45a8e
Alexander Galazin [Tue, 6 Jun 2017 21:13:52 +0000 (21:13 +0000)]
Ignore A channel in EGL RGB5_A1 clear color tests am: 9da1b45a8e
am: 4e33c51c88

Change-Id: I40646b435207311486b6489456ca5e7a1e0f4107

7 years agoIgnore A channel in EGL RGB5_A1 clear color tests
Alexander Galazin [Tue, 6 Jun 2017 21:11:52 +0000 (21:11 +0000)]
Ignore A channel in EGL RGB5_A1 clear color tests
am: 9da1b45a8e

Change-Id: Ib4273b3d979176dd6f4a22695a5d251c3fab7695

7 years agoIgnore A channel in EGL RGB5_A1 clear color tests
Alexander Galazin [Tue, 6 Jun 2017 11:22:58 +0000 (13:22 +0200)]
Ignore A channel in EGL RGB5_A1 clear color tests

Dithering can siginifcantly impact alpha channel and the framework
can't fully account it.

Components: AOSP
Affects:
dEQP-EGL.functional.color_clears.*.rgba5551*

Bug: 62383988

Change-Id: Ic8fa4da1a840da56f74af3e076d0728d9abbdadc
(cherry picked from commit 9da1b45a8ed2489a46dd698953d963fa8bfbf1e7)

7 years agoIgnore A channel in EGL RGB5_A1 clear color tests
Alexander Galazin [Tue, 6 Jun 2017 11:22:58 +0000 (13:22 +0200)]
Ignore A channel in EGL RGB5_A1 clear color tests

Dithering can siginifcantly impact alpha channel and the framework
can't fully account it.

Components: AOSP
Affects:
dEQP-EGL.functional.color_clears.*.rgba5551*

Bug: 62383988

Change-Id: Ic8fa4da1a840da56f74af3e076d0728d9abbdadc

7 years agofix DEQP AndroidTest.xml generation script
Guang Zhu [Tue, 6 Jun 2017 19:48:54 +0000 (12:48 -0700)]
fix DEQP AndroidTest.xml generation script

Bug: 36140955
Bug: 35360169
Test: ran scripts/build_android_mustpass.py to regnerate
Change-Id: I8ecfdad5d8a17d46dc0ed9f860a75086158ffd64

7 years agoadd component metadata tag to CTS DEQP module
Guang Zhu [Tue, 6 Jun 2017 19:29:14 +0000 (19:29 +0000)]
add component metadata tag to CTS DEQP module
am: e7e9f03ac1

Change-Id: Id9731ac670509aac292e9ff28d67cc25903051c0

7 years agoAdd OWNERS in external/deqp am: ea5d0ac339 am: d8d22c9c34
Chih-Hung Hsieh [Tue, 6 Jun 2017 02:45:32 +0000 (02:45 +0000)]
Add OWNERS in external/deqp am: ea5d0ac339 am: d8d22c9c34
am: 90707d5538

Change-Id: I3297d657fd67a3d1e32c150f295e23329a59b52c

7 years agoAdd OWNERS in external/deqp am: ea5d0ac339
Chih-Hung Hsieh [Tue, 6 Jun 2017 02:39:31 +0000 (02:39 +0000)]
Add OWNERS in external/deqp am: ea5d0ac339
am: d8d22c9c34

Change-Id: I1f8b8c408980f7d6abaea41b82642a80e72de905

7 years agoAdd OWNERS in external/deqp
Chih-Hung Hsieh [Tue, 6 Jun 2017 02:34:00 +0000 (02:34 +0000)]
Add OWNERS in external/deqp
am: ea5d0ac339

Change-Id: I2a467b66ddf9de5d3bb6c7f7130277c33d15c85b

7 years agoadd component metadata tag to CTS DEQP module
Guang Zhu [Mon, 5 Jun 2017 21:38:08 +0000 (14:38 -0700)]
add component metadata tag to CTS DEQP module

Bug: 36140955
Bug: 35360169
Test: new unit test to ensure that all modules have this field
Change-Id: I982faeb47f0d3258e2182666adb5ca4be2d3f721
Merged-In: I3fe6bc2f35b253a4a15f3a133c42e522fb0ae277

7 years agoAdd OWNERS in external/deqp
Chih-Hung Hsieh [Mon, 5 Jun 2017 17:48:12 +0000 (10:48 -0700)]
Add OWNERS in external/deqp

* Owners are selected from top CL approvals or owners.
  They will be suggested to review/approve future CLs.
* OWNERS files are recognized by the new find-owners plugin, see .md files in
  https://gerrit.googlesource.com/plugins/find-owners/+/master/src/main/resources/Documentation/

Test: build/make/tools/checkowners.py -c -v OWNERS
Change-Id: I0d256181d2ca0c0ec55cf5479ff34aa68f3190a9

7 years agoAdd getAbi new interface
jdesprez [Fri, 2 Jun 2017 21:59:21 +0000 (21:59 +0000)]
Add getAbi new interface
am: 16fd5275d6

Change-Id: I06754ca2d59542f81bb5eaee836cd6553c599a97

7 years agoAdd getAbi new interface
jdesprez [Mon, 15 May 2017 17:12:55 +0000 (10:12 -0700)]
Add getAbi new interface

To handle new sharding more cleanly.

Test: deqp unit tests
cts full run
Bug: 37211399

Change-Id: I3683cf36b1fc9defae27db52378d270681e99264
(cherry picked from commit 1d16f247bb951dcdea15f5e2738d9c66f7f336e7)

7 years agoRemove unused function from es31fSRGBDecodeTests.cpp am: 1ee59ff986 am: 2e80d40a0b
Pyry Haulos [Tue, 16 May 2017 16:10:34 +0000 (16:10 +0000)]
Remove unused function from es31fSRGBDecodeTests.cpp am: 1ee59ff986 am: 2e80d40a0b
am: 4e9833b13f

Change-Id: Id25728595843101b58f9907065207f46b2c6d609

7 years agoRemove unused function from es31fSRGBDecodeTests.cpp am: 1ee59ff986
Pyry Haulos [Tue, 16 May 2017 16:07:31 +0000 (16:07 +0000)]
Remove unused function from es31fSRGBDecodeTests.cpp am: 1ee59ff986
am: 2e80d40a0b

Change-Id: I7352ec017454aec896878d32aae6ef7043b2ab61

7 years agoRemove unused function from es31fSRGBDecodeTests.cpp
Pyry Haulos [Tue, 16 May 2017 16:04:16 +0000 (16:04 +0000)]
Remove unused function from es31fSRGBDecodeTests.cpp
am: 1ee59ff986

Change-Id: I383e48b3b7ee18cb00913eb7f106e5f539d33977

7 years agoRemove unused function from es31fSRGBDecodeTests.cpp
Pyry Haulos [Tue, 16 May 2017 14:25:35 +0000 (07:25 -0700)]
Remove unused function from es31fSRGBDecodeTests.cpp

Unused function causes compiler warnings to appear with recent GCC
versions.

Change-Id: I941c579994acbc9146df86acf5b9da9ee85341f5

7 years agoFix texture/sampler mapping in sRGB tests
Alexander Galazin [Mon, 15 May 2017 22:21:47 +0000 (22:21 +0000)]
Fix texture/sampler mapping in sRGB tests
am: 102cfe8b11

Change-Id: If217f88d5c02f27ea98a7704756ca1cc81b62a90

7 years agoFix texture/sampler mapping in sRGB tests am: c8efb45ead am: 984445983d
Alexander Galazin [Mon, 15 May 2017 20:26:41 +0000 (20:26 +0000)]
Fix texture/sampler mapping in sRGB tests am: c8efb45ead am: 984445983d
am: bd25f07ba0

Change-Id: I29029039970d3e7e2ed0535606c2472aa13add34

7 years agoFix texture/sampler mapping in sRGB tests am: c8efb45ead
Alexander Galazin [Mon, 15 May 2017 20:23:41 +0000 (20:23 +0000)]
Fix texture/sampler mapping in sRGB tests am: c8efb45ead
am: 984445983d

Change-Id: I3e7ffe2585e8b5ea8cf8b5212df4422a99ac3f50

7 years agoFix texture/sampler mapping in sRGB tests
Alexander Galazin [Mon, 15 May 2017 20:20:41 +0000 (20:20 +0000)]
Fix texture/sampler mapping in sRGB tests
am: c8efb45ead

Change-Id: Icd43c9b411dbc052ee99c2acee6ee18635950511

7 years agoFix texture/sampler mapping in sRGB tests
Alexander Galazin [Thu, 11 May 2017 12:27:20 +0000 (14:27 +0200)]
Fix texture/sampler mapping in sRGB tests

sRGB decode tests assume that an API side texture with index i
is connected with a shader sampler variable uTexture with index i.

This relation was however incorrectly established, e.g.
the tests were mapping texture0 to a sampler with location 0, while
such sampler was not necessarily uTexture0.

This change fixes the mapping and makes the relation more obvious.

Components: AOSP
Affects:
dEQP-GLES31.functional.srgb_texture_decode.skip_decode.*.toggled
dEQP-GLES31.functional.srgb_texture_decode.skip_decode.*.conversion_gpu

Google bug: 38257749

Change-Id: I16508f6033b31583b1c5973b70a610dd59e78e8f
(cherry picked from commit c8efb45eadba4a910ab5770b2207582cf1bb7ca0)

7 years agoFix texture/sampler mapping in sRGB tests
Alexander Galazin [Thu, 11 May 2017 12:27:20 +0000 (14:27 +0200)]
Fix texture/sampler mapping in sRGB tests

sRGB decode tests assume that an API side texture with index i
is connected with a shader sampler variable uTexture with index i.

This relation was however incorrectly established, e.g.
the tests were mapping texture0 to a sampler with location 0, while
such sampler was not necessarily uTexture0.

This change fixes the mapping and makes the relation more obvious.

Components: AOSP
Affects:
dEQP-GLES31.functional.srgb_texture_decode.skip_decode.*.toggled
dEQP-GLES31.functional.srgb_texture_decode.skip_decode.*.conversion_gpu

Google bug: 38257749

Change-Id: I16508f6033b31583b1c5973b70a610dd59e78e8f

7 years agoUpdate Vulkan CTS to version 1.0.2.3
Pyry Haulos [Sat, 13 May 2017 14:51:19 +0000 (14:51 +0000)]
Update Vulkan CTS to version 1.0.2.3
am: 148890e79f

Change-Id: I224efd6c7eddc315499dc595f169b6927e4f9715

7 years agoUpdate Vulkan CTS to version 1.0.2.3 am: 633ab6f3c8 am: 399ba4a5ec
Pyry Haulos [Fri, 12 May 2017 20:51:50 +0000 (20:51 +0000)]
Update Vulkan CTS to version 1.0.2.3 am: 633ab6f3c8 am: 399ba4a5ec
am: a339444f14

Change-Id: Ic36f577140bc34410ab2a3bdecb2b7c00c7c5649

7 years agoUpdate Vulkan CTS to version 1.0.2.3 am: 633ab6f3c8
Pyry Haulos [Fri, 12 May 2017 20:50:20 +0000 (20:50 +0000)]
Update Vulkan CTS to version 1.0.2.3 am: 633ab6f3c8
am: 399ba4a5ec

Change-Id: I50d0e7f5ec133d90ab5f3f43ef05f0e06a6c45c2

7 years agoUpdate Vulkan CTS to version 1.0.2.3
Pyry Haulos [Fri, 12 May 2017 20:48:20 +0000 (20:48 +0000)]
Update Vulkan CTS to version 1.0.2.3
am: 633ab6f3c8

Change-Id: I34c5df3f1b36d1d30ac9331ab4e58b3a47499ec2

7 years agoUpdate Vulkan CTS to version 1.0.2.3
Pyry Haulos [Fri, 12 May 2017 19:58:30 +0000 (12:58 -0700)]
Update Vulkan CTS to version 1.0.2.3

New tests:

 * Add tests for VK_KHR_shared_presentable_image
 * Add tests for VK_KHR_get_surface_capabilities2

Fixes:

 * makeFramebufferWithoutAttachments creates invalid framebuffer
 * Fix typo in dE-IT.build_info.de_endianness_consistent name
 * Fix - uniform buffer incorrectly dereferenced
 * Use vkGetInstanceProcAddr(NULL) to load platform funcs
 * Imgtec Waiver for texture_gather*cube*depth32f*
 * Add VK_KHR_incremental_present to the list of allowed device
extensions
 * Use -std=c++03 with GCC and clang
 * Fix GCC 6.3 warnings in vulkan-cts-1.0.2
 * Improve check_build_sanity.py
 * Relax image verification in anisotropic filtering tests
 * Respect maxColorAttachments in image tests
 * Fix SPIR-V generation in dEQP-VK.spirv_assembly
 * Fix - depth/stencil images mandatory only for VK_IMAGE_TYPE_2D
 * Add missing barrier in ssbo layout tests

Bug: 38260702
Change-Id: I1c00d4b63c339ba69990b64a5bb225c661957e4c

7 years agoUpdate Vulkan CTS to version 1.0.2.3
Pyry Haulos [Fri, 12 May 2017 16:38:51 +0000 (09:38 -0700)]
Update Vulkan CTS to version 1.0.2.3

New tests:

 * Add tests for VK_KHR_shared_presentable_image
 * Add tests for VK_KHR_get_surface_capabilities2

Fixes:

 * makeFramebufferWithoutAttachments creates invalid framebuffer
 * Fix typo in dE-IT.build_info.de_endianness_consistent name
 * Fix - uniform buffer incorrectly dereferenced
 * Use vkGetInstanceProcAddr(NULL) to load platform funcs
 * Imgtec Waiver for texture_gather*cube*depth32f*
 * Add VK_KHR_incremental_present to the list of allowed device
extensions
 * Use -std=c++03 with GCC and clang
 * Fix GCC 6.3 warnings in vulkan-cts-1.0.2
 * Improve check_build_sanity.py
 * Relax image verification in anisotropic filtering tests
 * Respect maxColorAttachments in image tests
 * Fix SPIR-V generation in dEQP-VK.spirv_assembly
 * Fix - depth/stencil images mandatory only for VK_IMAGE_TYPE_2D
 * Add missing barrier in ssbo layout tests

Bug: 38260702
Change-Id: I1c00d4b63c339ba69990b64a5bb225c661957e4c

7 years agoFix negative CompressedTexImage2D tests
Alexander Galazin [Tue, 9 May 2017 20:52:40 +0000 (20:52 +0000)]
Fix negative CompressedTexImage2D tests
am: 4b6115726c

Change-Id: I72f09486156a660697d4f00e41207a2c2a2a5521

7 years agoMerge "Fix GCC 6.3 warnings in aosp/master" am: 1211e9fe1b am: 56ed30da81
Pyry Haulos [Tue, 9 May 2017 18:57:30 +0000 (18:57 +0000)]
Merge "Fix GCC 6.3 warnings in aosp/master" am: 1211e9fe1b am: 56ed30da81
am: 2bd761c309

Change-Id: Ib2913a7e951737c23805d2ba25106eb5e695773a

7 years agoFix negative CompressedTexImage2D tests am: 9de005f035 am: 958ab8f9cb
Alexander Galazin [Tue, 9 May 2017 18:57:16 +0000 (18:57 +0000)]
Fix negative CompressedTexImage2D tests am: 9de005f035 am: 958ab8f9cb
am: b42217f8ce

Change-Id: I64769839e2381c5d7ef0a9c50ca76e5dde82caa9

7 years agoMerge "Fix GCC 6.3 warnings in aosp/master" am: 1211e9fe1b
Pyry Haulos [Tue, 9 May 2017 18:53:23 +0000 (18:53 +0000)]
Merge "Fix GCC 6.3 warnings in aosp/master" am: 1211e9fe1b
am: 56ed30da81

Change-Id: I226c177f0351e56858170914ecbf3debf459fd44

7 years agoFix negative CompressedTexImage2D tests am: 9de005f035
Alexander Galazin [Tue, 9 May 2017 18:53:11 +0000 (18:53 +0000)]
Fix negative CompressedTexImage2D tests am: 9de005f035
am: 958ab8f9cb

Change-Id: Ic59ec5a4da6a3eda979126732480857d9c21044b

7 years agoMerge "Fix GCC 6.3 warnings in aosp/master"
Pyry Haulos [Tue, 9 May 2017 18:48:54 +0000 (18:48 +0000)]
Merge "Fix GCC 6.3 warnings in aosp/master"
am: 1211e9fe1b

Change-Id: I8d413cdae5423ba690af7e5b7f114771f94ad35b

7 years agoFix negative CompressedTexImage2D tests
Alexander Galazin [Tue, 9 May 2017 18:48:41 +0000 (18:48 +0000)]
Fix negative CompressedTexImage2D tests
am: 9de005f035

Change-Id: I6a966a2bf462e77169dd4a15e71f6960ecc55160

7 years agoMerge "Fix GCC 6.3 warnings in aosp/master"
Treehugger Robot [Tue, 9 May 2017 18:32:17 +0000 (18:32 +0000)]
Merge "Fix GCC 6.3 warnings in aosp/master"

7 years agoFix negative CompressedTexImage2D tests
Alexander Galazin [Mon, 8 May 2017 12:31:15 +0000 (14:31 +0200)]
Fix negative CompressedTexImage2D tests

Certain tests expect GL_VALID_VAULE for
glCompressedTexImage2D(GL_TEXTURE_2D, -1, 0x8b90, 0, 0, 0, 0, 0).

0x8b90 is a palette format PALETTE4_RGB8 and
the OES_compressed_paletted_texture extension allows
negative values for the level parameter:
    Accepted by the <level> parameter of CompressedTexImage2D
        Zero and negative values.  |level| + 1 determines the number of
        mip levels defined for the paletted texture.

This change fixes the tests in presence of
the OES_compressed_paletted_texture extension.

Components: AOSP
Google bug: 38109626

Affects:
dEQP-GLES2.functional.negative_api.texture.compressedteximage2d_neg_level_tex2d
dEQP-GLES2.functional.negative_api.texture.compressedteximage2d_neg_level_cube

Change-Id: Ia37e3fecaf3547abfb209803378114043c63a243
(cherry picked from commit 9de005f0355e389f1782543f34e0fb3c65a0a700)

7 years agoFix GCC 6.3 warnings in aosp/master
Pyry Haulos [Thu, 30 Mar 2017 23:42:23 +0000 (16:42 -0700)]
Fix GCC 6.3 warnings in aosp/master

Change-Id: I0a90ba7ed2e52fdadf554236850533298b2e1a9e

7 years agoFix negative CompressedTexImage2D tests
Alexander Galazin [Mon, 8 May 2017 12:31:15 +0000 (14:31 +0200)]
Fix negative CompressedTexImage2D tests

Certain tests expect GL_VALID_VAULE for
glCompressedTexImage2D(GL_TEXTURE_2D, -1, 0x8b90, 0, 0, 0, 0, 0).

0x8b90 is a palette format PALETTE4_RGB8 and
the OES_compressed_paletted_texture extension allows
negative values for the level parameter:
    Accepted by the <level> parameter of CompressedTexImage2D
        Zero and negative values.  |level| + 1 determines the number of
        mip levels defined for the paletted texture.

This change fixes the tests in presence of
the OES_compressed_paletted_texture extension.

Components: AOSP
Google bug: 38109626

Affects:
dEQP-GLES2.functional.negative_api.texture.compressedteximage2d_neg_level_tex2d
dEQP-GLES2.functional.negative_api.texture.compressedteximage2d_neg_level_cube

Change-Id: Ia37e3fecaf3547abfb209803378114043c63a243

7 years agoMerge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev...
Pyry Haulos [Wed, 3 May 2017 18:07:55 +0000 (18:07 +0000)]
Merge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: c2594c65ff" into nyc-mr1-dev am: 2190aa2642 am: 7394ee84a1 am: 579c101261
am: 705f37810e

Change-Id: I77114e3d87d94c063833c6badd3233428c7cd87c

7 years agoMerge "Fix color change verification in dithering tests" into nougat-cts-dev am:...
Pyry Haulos [Wed, 3 May 2017 18:07:38 +0000 (18:07 +0000)]
Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: 45d860b737 am: 2196375b32 am: 84ee6b2620 am: d4c8a3ac82 am: 862196b30a
am: b552592f77

Change-Id: Ibb1a95b31eb5383d1bb5743c6db298953e47b503

7 years agoMerge "DEPTH_STENCIL_OES as tex format requires OES_depth_texture" into nougat-cts...
Pyry Haulos [Wed, 3 May 2017 18:07:19 +0000 (18:07 +0000)]
Merge "DEPTH_STENCIL_OES as tex format requires OES_depth_texture" into nougat-cts-dev am: 9a83ec3f47 am: 9443c9c4c0 am: 578ae6d230 am: 6b5103682e am: 28cc3b34a9 am: c99530440b
am: a651781bb8  -s ours

Change-Id: I834a7749709c083b972a23fadfc934d74b20951f

7 years agoMerge "Fix error mask generation in checkLineContinuity" into nougat-cts-dev am:...
Alexander Galazin [Wed, 3 May 2017 18:07:07 +0000 (18:07 +0000)]
Merge "Fix error mask generation in checkLineContinuity" into nougat-cts-dev am: eebcec1b52 am: 71a9bc447d am: 620c938d61 am: 62aeee5d3e am: f83b3c5679 am: 64598a3e94
am: b06191e636

Change-Id: Ie7bbfbf8149eeaf35df484edce86b2a87c16ff94

7 years agoresolve merge conflicts of eb48f49dd to oc-dev
Pyry Haulos [Wed, 3 May 2017 18:06:48 +0000 (18:06 +0000)]
resolve merge conflicts of eb48f49dd to oc-dev
am: 7e37841e4f  -s ours

Change-Id: Id0436a84f2f097836264f593a7154475e1e328ab

7 years agoMerge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev...
Pyry Haulos [Wed, 3 May 2017 18:05:12 +0000 (18:05 +0000)]
Merge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: c2594c65ff" into nyc-mr1-dev am: 2190aa2642 am: 7394ee84a1
am: 579c101261

Change-Id: Ib5d026e7e4e689cf07791e6311d63c0e9561a542

7 years agoMerge "Fix color change verification in dithering tests" into nougat-cts-dev am:...
Pyry Haulos [Wed, 3 May 2017 18:04:55 +0000 (18:04 +0000)]
Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: 45d860b737 am: 2196375b32 am: 84ee6b2620 am: d4c8a3ac82
am: 862196b30a

Change-Id: Ifade543e4262d872142c9d3fa7dd54b23f382a8c

7 years agoMerge "DEPTH_STENCIL_OES as tex format requires OES_depth_texture" into nougat-cts...
Pyry Haulos [Wed, 3 May 2017 18:04:38 +0000 (18:04 +0000)]
Merge "DEPTH_STENCIL_OES as tex format requires OES_depth_texture" into nougat-cts-dev am: 9a83ec3f47 am: 9443c9c4c0 am: 578ae6d230 am: 6b5103682e am: 28cc3b34a9
am: c99530440b

Change-Id: I97eba377b795020191d0cfccee80f33188eb9ac2

7 years agoMerge "Fix error mask generation in checkLineContinuity" into nougat-cts-dev am:...
Alexander Galazin [Wed, 3 May 2017 18:04:20 +0000 (18:04 +0000)]
Merge "Fix error mask generation in checkLineContinuity" into nougat-cts-dev am: eebcec1b52 am: 71a9bc447d am: 620c938d61 am: 62aeee5d3e am: f83b3c5679
am: 64598a3e94

Change-Id: I707f8523b65c4e6d18f3c30c848359dbefc140c5

7 years agoresolve merge conflicts of eb48f49dd to oc-dev
Pyry Haulos [Wed, 3 May 2017 16:17:01 +0000 (09:17 -0700)]
resolve merge conflicts of eb48f49dd to oc-dev

Test: scripts/check_build_sanity.py
Change-Id: Iebca655530a000eb96e744fae44a4a9f740c91af

7 years agoMerge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev...
Pyry Haulos [Wed, 3 May 2017 16:21:39 +0000 (16:21 +0000)]
Merge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: c2594c65ff" into nyc-mr1-dev am: 2190aa2642 am: 7394ee84a1 am: 579c101261
am: 27ac88fa73

Change-Id: I1a3b820753b889a66fa5101d7ddb7ec4b3d723af

7 years agoMerge "Fix color change verification in dithering tests" into nougat-cts-dev am:...
Pyry Haulos [Wed, 3 May 2017 16:21:26 +0000 (16:21 +0000)]
Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: 45d860b737 am: 2196375b32 am: 84ee6b2620 am: d4c8a3ac82 am: 862196b30a
am: 7399cb4e48

Change-Id: Ie6880a1e23650f5e7f95a20fe358115424fa8801

7 years agoMerge "Merge "DEPTH_STENCIL_OES as tex format requires OES_depth_texture" into nougat...
Pyry Haulos [Wed, 3 May 2017 16:19:06 +0000 (16:19 +0000)]
Merge "Merge "DEPTH_STENCIL_OES as tex format requires OES_depth_texture" into nougat-cts-dev am: 9a83ec3f47 am: 9443c9c4c0 am: 578ae6d230 am: 6b5103682e am: 28cc3b34a9 am: c99530440b  -s ours" into nyc-mr2-dev-plus-aosp
am: bfa02fb74d  -s ours

Change-Id: I43303c670a5ea08890127d2523297604b9b7588d

7 years agoMerge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev...
Pyry Haulos [Wed, 3 May 2017 16:18:55 +0000 (16:18 +0000)]
Merge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: c2594c65ff" into nyc-mr1-dev am: 2190aa2642 am: 7394ee84a1
am: 579c101261

Change-Id: Idf4f6941e51b2cc8c54a378550e4da9df49a52dc

7 years agoMerge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev...
Pyry Haulos [Wed, 3 May 2017 16:18:53 +0000 (16:18 +0000)]
Merge "Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: c2594c65ff am: 1203cd8416 am: 365f13849d" into nyc-mr2-dev-plus-aosp
am: 0bcd8aabc4

Change-Id: Ia176d53657edd6e377c3882124ab3dfebf9a062b

7 years agoMerge "Fix color change verification in dithering tests" into nougat-cts-dev am:...
Pyry Haulos [Wed, 3 May 2017 16:18:40 +0000 (16:18 +0000)]
Merge "Fix color change verification in dithering tests" into nougat-cts-dev am: acf47d464f am: 45d860b737 am: 2196375b32 am: 84ee6b2620 am: d4c8a3ac82
am: 862196b30a

Change-Id: Id3414d1e9546f6df8605fd23d48a22c49d0f5bdf

7 years agoMerge "Fix error mask generation in checkLineContinuity" into nougat-cts-dev am:...
Alexander Galazin [Wed, 3 May 2017 16:18:38 +0000 (16:18 +0000)]
Merge "Fix error mask generation in checkLineContinuity" into nougat-cts-dev am: eebcec1b52 am: 71a9bc447d am: 620c938d61 am: 62aeee5d3e am: f83b3c5679 am: 64598a3e94
am: 7782da8bc6

Change-Id: I582c24e2b7108c392cccc457e84df1c67d7ee5ab

7 years agoMerge "Merge "Merge "Merge "DEPTH_STENCIL_OES as tex format requires OES_depth_textur...
Android Build Merger (Role) [Wed, 3 May 2017 16:17:39 +0000 (16:17 +0000)]
Merge "Merge "Merge "Merge "DEPTH_STENCIL_OES as tex format requires OES_depth_texture" into nougat-cts-dev am: 9a83ec3f47 am: 90e6678bc9" into nyc-mr1-dev am: 26ff3a55fd am: 4f2accd121 am: eb48f49ddc  -s ours" into nyc-mr2-dev-plus-aosp am: fbc5716d8b  -s ours" into oc-dev-plus-aosp