platform/upstream/VK-GL-CTS.git
7 years agoDEPTH_STENCIL_OES as tex format requires OES_depth_texture
Pyry Haulos [Tue, 18 Apr 2017 00:09:01 +0000 (00:09 +0000)]
DEPTH_STENCIL_OES as tex format requires OES_depth_texture
am: 8290443470

Change-Id: I84e9f7f9e732a2b5c728dd2cd35a68198d091fad

7 years agoDEPTH_STENCIL_OES as tex format requires OES_depth_texture
Pyry Haulos [Mon, 17 Apr 2017 19:34:26 +0000 (12:34 -0700)]
DEPTH_STENCIL_OES as tex format requires OES_depth_texture

Affects:

dEQP-GLES2.functional.fbo.completeness.*
dEQP-GLES3.functional.fbo.completeness.*

Bug: 36727598
Change-Id: Ic79408c21b80ea458baecf79c042e2694e72e0b2

7 years agoeglGetFrameTimestamps: Use reserved enum values.
Brian Anderson [Wed, 12 Apr 2017 21:35:14 +0000 (21:35 +0000)]
eglGetFrameTimestamps: Use reserved enum values.
am: 84574b5c7b

Change-Id: I00ff6beadd8056729afb3f607efb4786b4287fbb

7 years agoeglGetFrameTimestamps: Allow optional present support.
Brian Anderson [Wed, 12 Apr 2017 21:35:12 +0000 (21:35 +0000)]
eglGetFrameTimestamps: Allow optional present support.
am: afb7428641

Change-Id: Ie0bdecf04dca30dfe9aa6e3e600c81317df15b7d

7 years agoeglGetFrameTimestamps: pending vs. invalid timestamps.
Brian Anderson [Wed, 12 Apr 2017 21:35:10 +0000 (21:35 +0000)]
eglGetFrameTimestamps: pending vs. invalid timestamps.
am: b4e217e4a1

Change-Id: Ie88254e6829e2f5526240ad05a7d6b3e4010b3c8

7 years agoeglGetFrameTimestamps: Use reserved enum values.
Brian Anderson [Wed, 12 Apr 2017 00:06:53 +0000 (17:06 -0700)]
eglGetFrameTimestamps: Use reserved enum values.

Test: --deqp-case=dEQP-EGL*get_frame_timestamps*

7 years agoeglGetFrameTimestamps: Allow optional present support.
Brian Anderson [Wed, 5 Apr 2017 19:42:52 +0000 (12:42 -0700)]
eglGetFrameTimestamps: Allow optional present support.

Test: --deqp-case=dEQP-EGL*get_frame_timestamps*

Change-Id: I5cfb334966f7f2794fe0043e1809de324a6e3d0e

7 years agoeglGetFrameTimestamps: pending vs. invalid timestamps.
Brian Anderson [Tue, 21 Mar 2017 20:03:33 +0000 (13:03 -0700)]
eglGetFrameTimestamps: pending vs. invalid timestamps.

Test: --deqp-case=dEQP-EGL*get_frame_timestamps*

Change-Id: I27718995c82748b55bc53e4d78a7f572e16a45ab

7 years agoMerge "Try harder to defeat GLSL compiler dead-code optimizations" into nougat-cts...
Ian Romanick [Tue, 11 Apr 2017 17:22:52 +0000 (17:22 +0000)]
Merge "Try harder to defeat GLSL compiler dead-code optimizations" into nougat-cts-dev am: aeef6dd8f5 am: a4ddab16dd
am: 8ca5b73a02

Change-Id: I278dbd93f410e6880a0a9d5b10d0c1268fa43f26

7 years agoMerge "Try harder to defeat GLSL compiler dead-code optimizations" into nougat-cts...
Ian Romanick [Tue, 11 Apr 2017 17:17:48 +0000 (17:17 +0000)]
Merge "Try harder to defeat GLSL compiler dead-code optimizations" into nougat-cts-dev am: aeef6dd8f5
am: a4ddab16dd

Change-Id: I18fe6a8ba3ba328513afdf1f5e5d32db6de32373

7 years agoMerge "Try harder to defeat GLSL compiler dead-code optimizations" into nougat-cts-dev
Ian Romanick [Tue, 11 Apr 2017 17:13:17 +0000 (17:13 +0000)]
Merge "Try harder to defeat GLSL compiler dead-code optimizations" into nougat-cts-dev
am: aeef6dd8f5

Change-Id: I8300511b30c7bd03885a6cb019970852f7e72693

7 years agoMerge "Try harder to defeat GLSL compiler dead-code optimizations" into nougat-cts-dev
Treehugger Robot [Tue, 11 Apr 2017 16:56:42 +0000 (16:56 +0000)]
Merge "Try harder to defeat GLSL compiler dead-code optimizations" into nougat-cts-dev

7 years agoTry harder to defeat GLSL compiler dead-code optimizations
Ian Romanick [Thu, 10 Nov 2016 01:29:01 +0000 (17:29 -0800)]
Try harder to defeat GLSL compiler dead-code optimizations

A number of CTS tests generate shaders like like:

    #version 310 es

    buffer TargetInterface
    {
            highp float target;
    };

    highp vec4 readInputs()
    {
            highp vec4 retValue = vec4(0.0);
            retValue += vec4(float(target));
            return retValue;
    }

    void writeOutputs(in highp vec4 dummyValue)
    {
            target = float(dummyValue.y);
    }

    void main()
    {
            writeOutputs(readInputs());
    }

After various common optimizations this becomes:

    buffer TargetInterface
    {
            highp float target;
    };

    void main()
    {
            target = target;
    }

In the absence of memoryBarrier() or qualifiers on the buffer, there is
no guarantee about the order of writes to the buffer.  Since this write
is not guaranteed to be visible either on the GPU or the CPU, we
eliminate it.  Since there is no access to target in the shader, we
report GL_REFERENCED_BY_FRAGMENT_SHADER = GL_FALSE.  The tests expect
GL_TRUE.

The vectored versions of this test swizzle the value read from the
buffer before writing it back.  These writes are not eliminated.

Adding a uniform instead of a literal constant also prevents the reads
and writes of the SSBO from being eliminated.

v2: Ignore the uniform named "zero" in
ResourceListTestCase::verifyResourceList.  The alternative was to add
zero to the resource list, but that required making small changes
(mostly removing const) from over a dozen places in the code.  This
slightly hacky, but localized, change seemed better.

v3: Various coding standards fixes suggested by Alexander Galazin and
Pyry.  Add getDummyZeroUniformName to query name of the zero uniform and
a lot more documentation.  Both suggested by Pyry.

The following tests are affected:

- dEQP-GLES31.functional.program_interface_query.buffer_variable.random.6
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.compute.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.separable_fragment.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.vertex_fragment_only_fragment.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.vertex_fragment.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.vertex_geo_fragment_only_fragment.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.vertex_geo_fragment.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.vertex_tess_fragment_only_fragment.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.vertex_tess_fragment.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.vertex_tess_geo_fragment_only_fragment.unnamed_block.float
- dEQP-GLES31.functional.program_interface_query.buffer_variable.referenced_by.vertex_tess_geo_fragment.unnamed_block.float

Change-Id: I867ad32476269ac1272c09672be0a6d6fe37e31e
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Bugzilla: https://cvs.khronos.org/bugzilla/show_bug.cgi?id=16114
Google bug: 37228062

7 years agoMerge "Allow robustness tests on GLES 3.0"
Kalle Raita [Fri, 7 Apr 2017 19:46:05 +0000 (19:46 +0000)]
Merge "Allow robustness tests on GLES 3.0"
am: ab3013ef10

Change-Id: If45ff3202fd0a0683567d879d188cae2833ceece

7 years agoMerge "Allow robustness tests on GLES 3.0"
Kalle Raita [Fri, 7 Apr 2017 19:42:06 +0000 (19:42 +0000)]
Merge "Allow robustness tests on GLES 3.0"

7 years agoAllow robustness tests on GLES 3.0
Kalle Raita [Thu, 30 Mar 2017 17:23:47 +0000 (10:23 -0700)]
Allow robustness tests on GLES 3.0

Allow selected robustness tests run on GLES 3.0 instead of always
requiring 3.1.

Affects: dEQP-EGL.functional.robustness.*
Bug: 36428911
Test: dEQP-EGL.functional.robustness.* on Pixel XL

Change-Id: I78f543dcd667b5121f61150b082fd4a4a9c14b23

7 years agoMerge vulkan-cts-1.0.2 into aosp/master
Pyry Haulos [Thu, 6 Apr 2017 22:35:17 +0000 (22:35 +0000)]
Merge vulkan-cts-1.0.2 into aosp/master
am: 55da06144c

Change-Id: I6f5bb189fa1db31bc18acc50340113dd359da968

7 years agoMerge vk-gl-cts/master into aosp/deqp-dev
Pyry Haulos [Thu, 6 Apr 2017 22:05:11 +0000 (15:05 -0700)]
Merge vk-gl-cts/master into aosp/deqp-dev

7 years agoMerge "x11_egl: search for glesv1_cm, toggle DEQP_SUPPORT_GLES1 on if found"
Pyry Haulos [Thu, 6 Apr 2017 22:04:12 +0000 (22:04 +0000)]
Merge "x11_egl: search for glesv1_cm, toggle DEQP_SUPPORT_GLES1 on if found"
am: 89c3844ccb

Change-Id: I173509e62c9d905f6dcf4b5163c98d2ba82e7473

7 years agoMerge vulkan-cts-1.0.2 into aosp/master
Pyry Haulos [Thu, 6 Apr 2017 22:02:17 +0000 (15:02 -0700)]
Merge vulkan-cts-1.0.2 into aosp/master

Contains following fixes that have been made after vulkan-cts-1.0.2.2:

 * 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

This merge doesn't match any Vulkan CTS release tag.

Bug: 36899783
Bug: 36817508
Change-Id: I5dff02835e5296e1c25ba67675c06e2261e5c476

7 years agoMerge "x11_egl: search for glesv1_cm, toggle DEQP_SUPPORT_GLES1 on if found"
Pyry Haulos [Thu, 6 Apr 2017 22:00:39 +0000 (22:00 +0000)]
Merge "x11_egl: search for glesv1_cm, toggle DEQP_SUPPORT_GLES1 on if found"

7 years agoMerge vk-gl-cts/vulkan-cts-1.0.2 into vk-gl-cts/master
Pyry Haulos [Thu, 6 Apr 2017 18:04:38 +0000 (11:04 -0700)]
Merge vk-gl-cts/vulkan-cts-1.0.2 into vk-gl-cts/master

Change-Id: I17256fdcfe30d879548307bf5feb61a3ecd4ff39

7 years agoMerge vk-gl-cts/vulkan-cts-1.0.1 into vk-gl-cts/vulkan-cts-1.0.2
Pyry Haulos [Thu, 6 Apr 2017 18:04:35 +0000 (11:04 -0700)]
Merge vk-gl-cts/vulkan-cts-1.0.1 into vk-gl-cts/vulkan-cts-1.0.2

Change-Id: Iaedfbb3579c55d33ebfc415197a67b8145725f4f

7 years agoFix - uniform buffer incorrectly dereferenced
Marcin Kańtoch [Tue, 4 Apr 2017 12:31:34 +0000 (14:31 +0200)]
Fix - uniform buffer incorrectly dereferenced

Uniform buffer is incorrectly dereferenced in
ssbo layout tests.

Affected tests: dEQP-VK.ssbo.layout.*

Change-Id: I5831ad75f558f8992bed6bdc48b1833d2ee13d26

7 years agoUse vkGetInstanceProcAddr(NULL) to load platform funcs
Pyry Haulos [Wed, 5 Apr 2017 18:05:03 +0000 (11:05 -0700)]
Use vkGetInstanceProcAddr(NULL) to load platform funcs

Vulkan specification says that only vkGetInstanceProcAddr() has to be
loaded using platform-specific means. Other 'platform'-class functions,
listed below, can be loaded using vkGetInstanceProcAddr(NULL, pName).

Following functions are loaded with vkGetInstanceProcAddr():
 * vkEnumerateInstanceExtensionProperties
 * vkEnumerateInstanceLayerProperties
 * vkCreateInstance

Change-Id: Iab0657bf93d3a36e4f4dda4a1f1550024db0890e

7 years agoDo not re-init GL functions after context reset
Pyry Haulos [Thu, 6 Apr 2017 17:45:23 +0000 (17:45 +0000)]
Do not re-init GL functions after context reset
am: 72c880b4c9

Change-Id: Ibe9564fccb61261dffba6f5fdefcccad755b31ba

7 years agoDo not re-init GL functions after context reset
Pyry Haulos [Thu, 6 Apr 2017 16:03:37 +0000 (09:03 -0700)]
Do not re-init GL functions after context reset

SharedContextResetCase was calling initGLFunctions() using a context
belonging to a share group where context reset has occurred.
initGLFunctions() calls glGetError() internally and at that point it
would return GL_CONTEXT_LOST.

Affects:

dEQP-EGL.functional.robustness.reset_context.shaders.infinite_loop.shared_context_status.vertex
dEQP-EGL.functional.robustness.reset_context.shaders.infinite_loop.shared_context_status.fragment
dEQP-EGL.functional.robustness.reset_context.shaders.infinite_loop.shared_context_status.vertex_and_fragment
dEQP-EGL.functional.robustness.reset_context.shaders.infinite_loop.shared_context_status.compute

Bug: 37077017
Change-Id: I27ae0951565760dee0bcc5040bb02a45c8f568f3

7 years agoMerge vk-gl-cts/vulkan-cts-1.0.2 into vk-gl-cts/master
Pyry Haulos [Wed, 5 Apr 2017 18:34:56 +0000 (11:34 -0700)]
Merge vk-gl-cts/vulkan-cts-1.0.2 into vk-gl-cts/master

Change-Id: I8acaa616704915c8cb487ff9be2445b6b9ba26be

7 years agoMerge vk-gl-cts/vulkan-cts-1.0.1 into vk-gl-cts/vulkan-cts-1.0.2
Pyry Haulos [Wed, 5 Apr 2017 18:34:23 +0000 (11:34 -0700)]
Merge vk-gl-cts/vulkan-cts-1.0.1 into vk-gl-cts/vulkan-cts-1.0.2

Change-Id: I2614d3a7ce451d47418e7c850a7c2c372f2189a9

7 years agoImgtec Waiver for texture_gather*cube*depth32f*
Alex Walters [Mon, 3 Apr 2017 10:46:36 +0000 (11:46 +0100)]
Imgtec Waiver for texture_gather*cube*depth32f*

Some versions of Imagination Technologies G6200, G6230, G6400, and
G6430 Rogue Series 6 GPU's are unable to correctly filter CEM corners
with F32 textures, this includes the ability to gather texels for texel
gather instructions.

This CL excludes the affected tests from mustpass.

Affects:

All dEQP-VK.glsl.texture_gather.basic.cube.depth32f* tests except:

dEQP-VK.glsl.texture_gather.basic.cube.depth32f.no_corners*

Components: Vulkan

VK-GL-CTS issue: 336

Change-Id: I4e20d887ad2901f78a7af326035d7a2a9ae5e76a

7 years agoExclude tests that require non-default context
Alexander Galazin [Wed, 5 Apr 2017 16:50:08 +0000 (18:50 +0200)]
Exclude tests that require non-default context

Components: OpenGL

Affects:
KHR-GLES32.context_flags.*
KHR-GLES32.robust.*

VK-GL-CTS issue: 354

Change-Id: I3103afa5d8a284919b5edb9e5fa2113e0236be86

7 years agoFix shader bugs in OOB tests
Alexander Galazin [Wed, 5 Apr 2017 16:10:08 +0000 (16:10 +0000)]
Fix shader bugs in OOB tests
am: cf65c56fb4

Change-Id: I317e6a3e2db1bf7b4dcfd19f5664ce1046237350

7 years agoAvoid resource errors on Android
Daniel Koch [Sat, 25 Mar 2017 15:19:06 +0000 (11:19 -0400)]
Avoid resource errors on Android

- Specify offscreen surface for debug tests
- avoid creating additional contexts for fbo configs

Some platforms cannot create more than one native window,
so specify an offscreen surface for windowed mode tests
and make the tests unsupported in fbo-based runs
(which don't respect the surface type requests).

These all work now with the window config pass, and return
NOT_SUPPORTED on the fbo passes. Ideally we'd have a new
test run for this type of test that doesn't create it's own
context in the first place, but that is more involved than
we want to handle currently.

VK-GL-CTS Issue: 328, 333
Component: OpenGL
Affects:
KHR-GL45.khr_debug.* (or GL45-CTS.khr_debug.* if not using new mustpass)
KHR-GL45.robustness.* (or GL45-CTS.robustness.* if not using new mustpass)
KHR-GLES32.robust.robustness.*
KHR-GLES32.context_flags.*

Change-Id: I76b89e9b025a26314004093a1781ba4e887604be

7 years agox11_egl: search for glesv1_cm, toggle DEQP_SUPPORT_GLES1 on if found
Tapani Pälli [Wed, 5 Apr 2017 06:39:17 +0000 (09:39 +0300)]
x11_egl: search for glesv1_cm, toggle DEQP_SUPPORT_GLES1 on if found

Some tests require GLES1 support and report test failure if support
has not been built. Patch changes build time configure to check GLES1
via pkg-config. If it is found, we turn on GLES1 support so that tests
will run and pass.

Change-Id: I586464c5fb7bffc40355caf57b30438f37ce1f6c
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
7 years agoFix shader bugs in OOB tests
Alexander Galazin [Wed, 5 Apr 2017 07:30:06 +0000 (09:30 +0200)]
Fix shader bugs in OOB tests

1. Check that the required number of vertex shader storage blocks is supported,
   throw NotSupported otherwise.
2. Use an array instead of a vector in local_array tests.
3. Try harder to defeat compiler optimizations on arrays, i.e. initialize it
   with different values.

Components: AOSP

Affects:
dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.*.shader_storage_block.vertex*
dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.*.local_array.*

Google bug: 36891454

Change-Id: I2aeb2d454295993126d4048759e5981421d5c0db

7 years agoAdd VK_KHR_incremental_present to the list of allowed device extensions
Iago Toral Quiroga [Tue, 4 Apr 2017 09:50:37 +0000 (11:50 +0200)]
Add VK_KHR_incremental_present to the list of allowed device extensions

Otherwise dEQP-VK.api.info.device.extensions will fail
for drivers that expose the extension.

Components: Vulkan
VK-GL-CTS issue: 346

Affects:
dEQP-VK.api.info.device.extensions

Change-Id: If1a5d971226adca2bfd1586cb1f568e2ca244b6d

7 years agoMerge aosp/master into aosp/deqp-dev
Pyry Haulos [Tue, 4 Apr 2017 21:52:52 +0000 (14:52 -0700)]
Merge aosp/master into aosp/deqp-dev

7 years agoFix warnings reported by VS2013
Pyry Haulos [Tue, 4 Apr 2017 19:24:22 +0000 (12:24 -0700)]
Fix warnings reported by VS2013

Change-Id: Ic8af18719b586d974917258d7cd51dd4b6305eb6
Components: Vulkan

7 years agoMerge "merge in nyc-mr1-release history after reset to nyc-mr1-dev am: 868a8938ca...
Pyry Haulos [Tue, 4 Apr 2017 19:04:40 +0000 (19:04 +0000)]
Merge "merge in nyc-mr1-release history after reset to nyc-mr1-dev am: 868a8938ca am: aea1bbfaa2 am: 5c1cc6ba46 am: f7c84f0b66" into nyc-mr2-dev-plus-aosp
am: dbffc02c54

Change-Id: Id237c5b8b3ee060a4b588449786699dec7b60e39

7 years agomerge in nyc-mr1-release history after reset to nyc-mr1-dev am: 868a8938ca am: aea1bb...
Pyry Haulos [Tue, 4 Apr 2017 19:04:25 +0000 (19:04 +0000)]
merge in nyc-mr1-release history after reset to nyc-mr1-dev am: 868a8938ca am: aea1bbfaa2 am: 5c1cc6ba46 am: faa38a20ac
am: 5d20376574

Change-Id: I0b53d03d09f02c14fc8c6a305b202d93d89e7e22

7 years agoMerge "Non-compressed copy image target size (64,64,8)" am: beba5d481a am: 9bbc395b49...
Kalle Raita [Tue, 4 Apr 2017 19:03:52 +0000 (19:03 +0000)]
Merge "Non-compressed copy image target size (64,64,8)" am: beba5d481a am: 9bbc395b49 am: c842de9d14
am: 392263d752

Change-Id: I0007ed9a7a65cd3e7f553989241a379e4fd20401

7 years agoMerge "Allow ANGLE_depth_texture for FBO completeness." am: a8249e3a00 am: 8542846868...
Jamie Madill [Tue, 4 Apr 2017 19:03:39 +0000 (19:03 +0000)]
Merge "Allow ANGLE_depth_texture for FBO completeness." am: a8249e3a00 am: 8542846868 am: c7265ec450
am: 41bf5eddb0

Change-Id: I3875c23842f3236babbabebd2554060fb031ead6

7 years agoMerge "Extend primitive_bounding_box negative tests" am: 1975e3bd28 am: 4983f5a49f...
John Richardson [Tue, 4 Apr 2017 19:03:22 +0000 (19:03 +0000)]
Merge "Extend primitive_bounding_box negative tests" am: 1975e3bd28 am: 4983f5a49f am: a4941127f1
am: a4ffba40b9

Change-Id: I8ad270531112937e443e0b924278563191c639e4

7 years agoAdd shader storage negative coverage tests am: 51e20f1e25 am: 299bbc9a59 am: c960c8b34e
John Richardson [Tue, 4 Apr 2017 19:03:10 +0000 (19:03 +0000)]
Add shader storage negative coverage tests am: 51e20f1e25 am: 299bbc9a59 am: c960c8b34e
am: d9e474e1dc

Change-Id: I8a72c871885eea9849d376809a2af400e118747f

7 years agoEncode es3pBufferDataUploadTests.cpp as utf-8 am: 455d82c60b am: ee11c5503a am: 48a17...
Jamie Madill [Tue, 4 Apr 2017 19:02:56 +0000 (19:02 +0000)]
Encode es3pBufferDataUploadTests.cpp as utf-8 am: 455d82c60b am: ee11c5503a am: 48a17ce6e5
am: d026022f0b

Change-Id: Ia733f8ffa3c7eb36feee62ebf3e5ae5c9604f822

7 years agoMerge gerrit/vulkan-cts-1.0-dev into aosp/master am: 6c4fe5bd7a am: ebebe7d3b9 am...
Pyry Haulos [Tue, 4 Apr 2017 19:02:42 +0000 (19:02 +0000)]
Merge gerrit/vulkan-cts-1.0-dev into aosp/master am: 6c4fe5bd7a am: ebebe7d3b9 am: 99ddee4d78
am: 95e52cd9ec

Change-Id: I47ca80abdb9b5d5ec845d5ba59ee3bc59ee46605

7 years agoMerge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmal...
Tina Zhou [Tue, 4 Apr 2017 19:02:29 +0000 (19:02 +0000)]
Merge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmallow-cts-dev am: a5af1b076f am: c1a3067570 am: effd4e62e5 am: 225502d2cc am: 4d04016fad am: 67dc3662e1 am: d64c35a5e6 am: 87a4ffcd07 am: 1094f351d1 am: 03feaffb1a
am: efcf4f78ee

Change-Id: I56bd784bc1d4743ccd7324629d8842bea8f1e0bf

7 years agoFix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am...
Kenneth Graunke [Tue, 4 Apr 2017 19:01:48 +0000 (19:01 +0000)]
Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am: 5613abd15f am: 1d0056de13 am: a4c8f24941 am: 1f1491167d am: 5ac1b7c804 am: f9ca1468a7 am: 9ee0dc70fc am: 62d5098093 am: e312424670
am: 9af7fa21c6

Change-Id: I9d650c7d426bc2d60d76ba655e957daca4540e66

7 years agoMerge "Fix internal format/type for 3D + depth/stencil negative API tests." into...
Tina Zhou [Tue, 4 Apr 2017 19:01:33 +0000 (19:01 +0000)]
Merge "Fix internal format/type for 3D + depth/stencil negative API tests." into marshmallow-cts-dev am: d962b86909 am: b5ef7ae649 am: 5702f3e5ae am: a8564b49db am: 3126b25e64 am: d1109cef09 am: bd34d84e25 am: 94862a44ee am: ec07f24c86 am: 5ed58f8a01
am: 4e8fdb91b5

Change-Id: Ibad2e9e21334ebcf35f6f626ba2b4b0525ac51ba

7 years agoFix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db...
Kenneth Graunke [Tue, 4 Apr 2017 19:01:21 +0000 (19:01 +0000)]
Fix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db am: 1d20a4108b am: 200b407779 am: c6382e2e23 am: a9d8fe46b4 am: 4cf7816eac am: ca0f4e0cbb am: 84b462d0fb am: 7551b11773 am: 4fd6e71479
am: ca6b5e82b6

Change-Id: I040711790269c6d8e5da6d03419930909de3ba29

7 years agoMerge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmal...
Tina Zhou [Tue, 4 Apr 2017 19:01:09 +0000 (19:01 +0000)]
Merge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmallow-cts-dev am: a5af1b076f am: c2c27aa562 am: e5d1db1d75 am: 5eed9806da am: ac4f7241a1 am: 5fa7a52fee am: 9a321f7ce8
am: bffab895c0

Change-Id: Ic2aa5f17252570924d4c249c124479e2729ee58c

7 years agoFix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am...
Kenneth Graunke [Tue, 4 Apr 2017 19:00:58 +0000 (19:00 +0000)]
Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am: ab691d3f7e am: 5a273080f0 am: 6558869cb1 am: f9dac85ad7 am: d0e437bcd7 am: 6e33228e52
am: f91febb8f8

Change-Id: Ibb4e7c8f10a65a4eb0dd79e9cdba177adee4cc8c

7 years agoMerge "Fix internal format/type for 3D + depth/stencil negative API tests." into...
Tina Zhou [Tue, 4 Apr 2017 19:00:47 +0000 (19:00 +0000)]
Merge "Fix internal format/type for 3D + depth/stencil negative API tests." into marshmallow-cts-dev am: d962b86909 am: 080d0d5005 am: fa420a10e2 am: 54684887a6 am: 4c9703fccd am: ac60fa9f6c am: 0fa50ddbfb
am: d815f2956a

Change-Id: I540b213b800a8bc436bdc924f884205077515487

7 years agoFix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db...
Kenneth Graunke [Tue, 4 Apr 2017 19:00:36 +0000 (19:00 +0000)]
Fix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db am: f5414b15bb am: 3a520ad416 am: 24aa8651ff am: 081007dbd3 am: 0209a8e015 am: c8400b10a3
am: 11b6b6353f

Change-Id: I3ec1544a13927f84ba265166140d9ced0ed1ed91

7 years agoMerge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev...
Tina Zhou [Tue, 4 Apr 2017 19:00:24 +0000 (19:00 +0000)]
Merge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev am: 6cea9dbc62 am: fa02db7127 am: c099989faf am: 6570dc4744 am: 2cb5f272cf am: 1dabb154d5 am: a7d55ba5a8 am: ab0806ca20 am: 4b9b3cda97 am: 3cddb833e9
am: 0eb4e456b9

Change-Id: Ibdeb84179be504fd098715db35b420028407600c

7 years agoAdd the support to device connection via TCP/IP am: 4ccc9fd56c am: 548e356569 am...
Chun-Ta Lin [Tue, 4 Apr 2017 19:00:12 +0000 (19:00 +0000)]
Add the support to device connection via TCP/IP am: 4ccc9fd56c am: 548e356569 am: cceb936715 am: c627567fb6 am: 41db2c5a2a am: 71e9173e0f am: f1855db31d am: da8bbdcb87 am: a01270f22a am: 9f9439f10a
am: 91dd1a43d2

Change-Id: Ib79845834b3f34ccc9196d550debe8063310725f

7 years agoMerge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev...
Tina Zhou [Tue, 4 Apr 2017 19:00:00 +0000 (19:00 +0000)]
Merge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev am: 6cea9dbc62 am: 87d5ca1e30 am: 7ab3863a95 am: 889e4ea697 am: e82b53127b am: 2b6f277417 am: 4eb2933ecd
am: 87d753030d

Change-Id: Ic19d6d2303a623cc3f008f76d7c4eac413154b7c

7 years agoAdd the support to device connection via TCP/IP am: 4ccc9fd56c am: 7e2d9f83ff am...
Chun-Ta Lin [Tue, 4 Apr 2017 18:59:46 +0000 (18:59 +0000)]
Add the support to device connection via TCP/IP am: 4ccc9fd56c am: 7e2d9f83ff am: 1fcf1c0083 am: 6cab656d32 am: f6caf46da6 am: ba4c42a3d4 am: a91e820425
am: 2d0071593e

Change-Id: Idc3b5bfd85936d8668ec4398ae1bbcef0753789f

7 years agoAdd runtime to CtsDeqpTestCases am: bf0076a424 am: dc61e9cf25 am: b2c1391b7b am:...
Aaron Holden [Tue, 4 Apr 2017 18:59:33 +0000 (18:59 +0000)]
Add runtime to CtsDeqpTestCases am: bf0076a424 am: dc61e9cf25 am: b2c1391b7b am: 7e127cca59 am: 3b7ad55647 am: 08aa70d2e1
am: 87aab30098

Change-Id: I206968659b17107c0f3d3a94f5ea3db7f808794f

7 years agoDo not remove old SPIR-V binaries before running vk-build-programs am: b28ca98dd6...
Pyry Haulos [Tue, 4 Apr 2017 18:59:22 +0000 (18:59 +0000)]
Do not remove old SPIR-V binaries before running vk-build-programs am: b28ca98dd6 am: 799a2912dc am: f252de8900
am: 44272886a5

Change-Id: Icf7cf2747a8c727e5bba43c5c7b063ff123f2a9b

7 years agoMerge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am: c9061d1b52 am: 3e3c5a179e...
Pyry Haulos [Tue, 4 Apr 2017 18:59:10 +0000 (18:59 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am: c9061d1b52 am: 3e3c5a179e am: 249f158858
am: 1c1ca2aea2

Change-Id: I0955212485688623fec59e38c6364c74f5246b0b

7 years agoMerge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmal...
Tina Zhou [Tue, 4 Apr 2017 18:58:56 +0000 (18:58 +0000)]
Merge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmallow-cts-dev am: a5af1b076f am: c1a3067570 am: effd4e62e5 am: 225502d2cc am: 4d04016fad am: 67dc3662e1 am: d64c35a5e6 am: 87a4ffcd07 am: 1094f351d1 am: 5d63743a35
am: a1b92b6629

Change-Id: I97e11d642265ef5812840a511baae6779fc43433

7 years agoFix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am...
Kenneth Graunke [Tue, 4 Apr 2017 18:58:35 +0000 (18:58 +0000)]
Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am: 5613abd15f am: 1d0056de13 am: a4c8f24941 am: 1f1491167d am: 5ac1b7c804 am: f9ca1468a7 am: 9ee0dc70fc am: 62d5098093 am: c32e4661f4
am: d6c2c7e3ec

Change-Id: I1e6268d6ec6ad2da42e22241206903db3d82d143

7 years agoMerge "Fix internal format/type for 3D + depth/stencil negative API tests." into...
Tina Zhou [Tue, 4 Apr 2017 18:58:14 +0000 (18:58 +0000)]
Merge "Fix internal format/type for 3D + depth/stencil negative API tests." into marshmallow-cts-dev am: d962b86909 am: b5ef7ae649 am: 5702f3e5ae am: a8564b49db am: 3126b25e64 am: d1109cef09 am: bd34d84e25 am: 94862a44ee am: ec07f24c86 am: f7f5ebb64f
am: cb58846360

Change-Id: I61102f26e76c0bce0771a03b1974f805f33d2ac8

7 years agoFix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db...
Kenneth Graunke [Tue, 4 Apr 2017 18:57:56 +0000 (18:57 +0000)]
Fix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db am: 1d20a4108b am: 200b407779 am: c6382e2e23 am: a9d8fe46b4 am: 4cf7816eac am: ca0f4e0cbb am: 84b462d0fb am: 7551b11773 am: 74de83305b
am: be0897e375

Change-Id: Ia94f409e8a79c6f73087dd52432a12ebda0038c3

7 years agoMerge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmal...
Tina Zhou [Tue, 4 Apr 2017 18:57:37 +0000 (18:57 +0000)]
Merge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmallow-cts-dev am: a5af1b076f am: c2c27aa562 am: e5d1db1d75 am: 5eed9806da am: ac4f7241a1 am: 5fa7a52fee am: 1a64a06d85
am: d7549d5820

Change-Id: I0aff70a01960edcc0fab0e012ba4fa6d82fe1f23

7 years agoFix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am...
Kenneth Graunke [Tue, 4 Apr 2017 18:57:18 +0000 (18:57 +0000)]
Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am: ab691d3f7e am: 5a273080f0 am: 6558869cb1 am: f9dac85ad7 am: d0e437bcd7 am: 11905e704d
am: 9264518ac0

Change-Id: Ic55bd094b4f1b0103d1c26a1c2ed64168bf164d8

7 years agoMerge "Fix internal format/type for 3D + depth/stencil negative API tests." into...
Tina Zhou [Tue, 4 Apr 2017 18:57:07 +0000 (18:57 +0000)]
Merge "Fix internal format/type for 3D + depth/stencil negative API tests." into marshmallow-cts-dev am: d962b86909 am: 080d0d5005 am: fa420a10e2 am: 54684887a6 am: 4c9703fccd am: ac60fa9f6c am: 4471efc917
am: 1027374bcb

Change-Id: Ib5c85b57aeec01928d7b3c650b430f1a883e18be

7 years agoFix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db...
Kenneth Graunke [Tue, 4 Apr 2017 18:56:53 +0000 (18:56 +0000)]
Fix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db am: f5414b15bb am: 3a520ad416 am: 24aa8651ff am: 081007dbd3 am: 0209a8e015 am: d0280b2a59
am: 2fb1860fe7

Change-Id: I68b218e6257b393a82e7d83d46726a0fee2bc19f

7 years agoMerge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmal...
Tina Zhou [Tue, 4 Apr 2017 18:56:42 +0000 (18:56 +0000)]
Merge "Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA." into marshmallow-cts-dev am: a5af1b076f am: c2c27aa562 am: 3dda7ae2d2 am: 68289ab9d7 am: 9116124d63
am: 6b756fb6c2

Change-Id: I3917a177d172091bd26153d8cd3b23aa4a60dda8

7 years agoFix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am...
Kenneth Graunke [Tue, 4 Apr 2017 18:56:31 +0000 (18:56 +0000)]
Fix sample_mask_in.bit_count_per_two_samples tests for 2x MSAA. am: ea5589c748 am: ab691d3f7e am: d131139629 am: fe70f6f1db am: 8392b8aa99
am: 674221ac33

Change-Id: I05fd54a67b486e531cf4e586434b25323f835080

7 years agoMerge "Fix internal format/type for 3D + depth/stencil negative API tests." into...
Tina Zhou [Tue, 4 Apr 2017 18:56:19 +0000 (18:56 +0000)]
Merge "Fix internal format/type for 3D + depth/stencil negative API tests." into marshmallow-cts-dev am: d962b86909 am: 080d0d5005 am: e5f339cae5 am: d7a4a648f5 am: a01fd2a043
am: aa14c3049e

Change-Id: I8dfcdda9280b25df2a53fa85e0d38084823a227c

7 years agoFix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db...
Kenneth Graunke [Tue, 4 Apr 2017 18:56:06 +0000 (18:56 +0000)]
Fix internal format/type for 3D + depth/stencil negative API tests. am: d2f3b468db am: f5414b15bb am: 7098357b48 am: a660b9fc59 am: 4c20e47b95
am: 345a4506b6

Change-Id: I3a91c0ad228fe40de1d697c2cae29cf761fccb64

7 years agoMerge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev...
Tina Zhou [Tue, 4 Apr 2017 18:55:53 +0000 (18:55 +0000)]
Merge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev am: 6cea9dbc62 am: fa02db7127 am: c099989faf am: 6570dc4744 am: 2cb5f272cf am: 1dabb154d5 am: a7d55ba5a8 am: ab0806ca20 am: 4b9b3cda97 am: 3cc5c51830
am: 1afe927bb0

Change-Id: I622841855fc7fdebc6a3d861d9cdabcee2fbf8af

7 years agoAdd the support to device connection via TCP/IP am: 4ccc9fd56c am: 548e356569 am...
Chun-Ta Lin [Tue, 4 Apr 2017 18:55:36 +0000 (18:55 +0000)]
Add the support to device connection via TCP/IP am: 4ccc9fd56c am: 548e356569 am: cceb936715 am: c627567fb6 am: 41db2c5a2a am: 71e9173e0f am: f1855db31d am: da8bbdcb87 am: a01270f22a am: 4596ed3ac8
am: 0ff897b3a8

Change-Id: I60fbad86aa9845170cae7281abe0dee53d6c22ee

7 years agoMerge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev...
Tina Zhou [Tue, 4 Apr 2017 18:55:22 +0000 (18:55 +0000)]
Merge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev am: 6cea9dbc62 am: 87d5ca1e30 am: 7ab3863a95 am: 889e4ea697 am: e82b53127b am: 2b6f277417 am: 97f422dfa4
am: de7d1acf8f

Change-Id: Ib7b2e0c4118b2f7d377eb028c49dd8b115cfa3a3

7 years agoAdd the support to device connection via TCP/IP am: 4ccc9fd56c am: 7e2d9f83ff am...
Chun-Ta Lin [Tue, 4 Apr 2017 18:54:45 +0000 (18:54 +0000)]
Add the support to device connection via TCP/IP am: 4ccc9fd56c am: 7e2d9f83ff am: 1fcf1c0083 am: 6cab656d32 am: f6caf46da6 am: ba4c42a3d4 am: 356db64cc0
am: 6305f11672

Change-Id: I6b14ddc0075b4803eefd3c0270738694d729a658

7 years agoMerge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev...
Tina Zhou [Tue, 4 Apr 2017 18:54:31 +0000 (18:54 +0000)]
Merge "Add the support to device connection via TCP/IP" into marshmallow-cts-dev am: 6cea9dbc62 am: 87d5ca1e30 am: 42149e7b88 am: ed2847e325 am: 2be672f23c
am: 95d7aaf93a

Change-Id: I01fe28937ef02903912c7165570ff5367d9dc1fa

7 years agoAdd the support to device connection via TCP/IP am: 4ccc9fd56c am: 7e2d9f83ff am...
Chun-Ta Lin [Tue, 4 Apr 2017 18:54:16 +0000 (18:54 +0000)]
Add the support to device connection via TCP/IP am: 4ccc9fd56c am: 7e2d9f83ff am: a2c0c6be9d am: 1459961551 am: 02ac9c36cf
am: f7dc524378

Change-Id: I93cbadae26c011485f94b4b602ebf2abcb190b92

7 years agoAdd runtime to CtsDeqpTestCases am: bf0076a424 am: dc61e9cf25 am: b2c1391b7b am:...
Aaron Holden [Tue, 4 Apr 2017 18:53:56 +0000 (18:53 +0000)]
Add runtime to CtsDeqpTestCases am: bf0076a424 am: dc61e9cf25 am: b2c1391b7b am: 7e127cca59 am: 3b7ad55647 am: 93c809e3de
am: e30caa8acb

Change-Id: Iedcdc941db522f7c0dde5365cef9ab90419004d9

7 years agoAdd runtime to CtsDeqpTestCases am: bf0076a424 am: ac5e3c7c2d am: 1ee10d6a16 am:...
Aaron Holden [Tue, 4 Apr 2017 18:53:33 +0000 (18:53 +0000)]
Add runtime to CtsDeqpTestCases am: bf0076a424 am: ac5e3c7c2d am: 1ee10d6a16 am: 6890f381ac
am: e4bdb0334b

Change-Id: I297b0bb3803acfb0e52e0115fb2e7912f4b2a6b7

7 years agoMerge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am: 8bff020a8a am: c047913d3d...
Pyry Haulos [Tue, 4 Apr 2017 18:53:22 +0000 (18:53 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am: 8bff020a8a am: c047913d3d am: f16b3558e6
am: 2ca88576a8

Change-Id: I04b36364dbc339af5fa7e1cb90c15ffaf6611bcf

7 years agoMerge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am: 43e50db72d am: ae92b0c427...
Pyry Haulos [Tue, 4 Apr 2017 18:53:09 +0000 (18:53 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am: 43e50db72d am: ae92b0c427 am: c133ee71ca
am: f50a42b81b

Change-Id: I38c7fadab4f3d394cac74fe77f1a47c4d522c362

7 years agoMerge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am: 812d768b55 am: 8e32ffdbc2
Pyry Haulos [Tue, 4 Apr 2017 18:52:47 +0000 (18:52 +0000)]
Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master am: 812d768b55 am: 8e32ffdbc2
am: df58e82c56

Change-Id: I0a352ad07ee37d3e12fee456a4d02e37f388b476

7 years agoMerge "Check for EXT_color_buffer_float in read_pixels_fbo_format_mismatch" into...
Tina Zhou [Tue, 4 Apr 2017 18:52:36 +0000 (18:52 +0000)]
Merge "Check for EXT_color_buffer_float in read_pixels_fbo_format_mismatch" into nougat-cts-dev am: 544e0e3b1d am: af005183c6 am: 3af556fa23 am: 4b09d218b7 am: ca2cf0c2cf
am: 233e7457a7

Change-Id: I2065d610bd8c707a090e2cba2e6e339d0ae342bc

7 years agoCheck for EXT_color_buffer_float in read_pixels_fbo_format_mismatch am: 37e360591e...
Pyry Haulos [Tue, 4 Apr 2017 18:52:23 +0000 (18:52 +0000)]
Check for EXT_color_buffer_float in read_pixels_fbo_format_mismatch am: 37e360591e am: b403d93667 am: 7d57783e07 am: 2c96ee9d1e am: bf7e838fac
am: 219cf679ff

Change-Id: I91ca2a87c2a267b7bf18f5bf0bffbe52029d0c15

7 years agoMerge "CP: Use empty region when buffer age is not supported" into nougat-cts-dev...
Tina Zhou [Tue, 4 Apr 2017 18:52:08 +0000 (18:52 +0000)]
Merge "CP: Use empty region when buffer age is not supported" into nougat-cts-dev am: b82263e2ad am: bde74aec80 am: c3471eb1c7 am: 6389ecabb6 am: 1e0c7ca177
am: 58df8ce64e

Change-Id: Id79ac1348e5d10fef048bc9771cc5940c76de770

7 years agoCP: Use empty region when buffer age is not supported am: 8230646213 am: 3e8d57ed32...
Kalle Raita [Tue, 4 Apr 2017 18:51:57 +0000 (18:51 +0000)]
CP: Use empty region when buffer age is not supported am: 8230646213 am: 3e8d57ed32 am: 24169a1c92 am: 5f95cd5862 am: 8dff8112ff
am: 5c28f2b581

Change-Id: I88b8a4de7dff3bb0397b254310cb07dca05ce8ca

7 years agoMerge "Fix deStrnlen fall-back implementation" into nougat-cts-dev am: a04db6628e...
Tina Zhou [Tue, 4 Apr 2017 18:51:37 +0000 (18:51 +0000)]
Merge "Fix deStrnlen fall-back implementation" into nougat-cts-dev am: a04db6628e am: 4e28a717a1 am: 9bcd2cdcae am: 63dabf3db4 am: f05d10eaf2
am: 4a8439bd62

Change-Id: Ica84e895142e68fdd89d578a588318948d495ba6

7 years agoFix deStrnlen fall-back implementation am: 54ebe093a9 am: 7595269a79 am: a1e1fe14f0...
Pyry Haulos [Tue, 4 Apr 2017 18:51:24 +0000 (18:51 +0000)]
Fix deStrnlen fall-back implementation am: 54ebe093a9 am: 7595269a79 am: a1e1fe14f0 am: e21b847ac0 am: 071f3960da
am: 7eaa5cb36c

Change-Id: Ic7bdf0ab8d7718c78b24c69bcb4cf68e9c359069

7 years agoMerge "Remove a few preprocessor cases testing undefined behavior" into nougat-cts...
Tina Zhou [Tue, 4 Apr 2017 18:51:08 +0000 (18:51 +0000)]
Merge "Remove a few preprocessor cases testing undefined behavior" into nougat-cts-dev am: 4275d2099c am: 6fd85eb3eb am: 2ba9b99e0a am: ff244078e9 am: 297c3f45f7
am: 405981b3ee

Change-Id: Ie95f9ebb8335710b70401dc5bdfa379c831d180f

7 years agoRemove a few preprocessor cases testing undefined behavior am: e5f7483417 am: b9a2f1b...
Pyry Haulos [Tue, 4 Apr 2017 18:50:46 +0000 (18:50 +0000)]
Remove a few preprocessor cases testing undefined behavior am: e5f7483417 am: b9a2f1b768 am: d280df3576 am: 5655cfc165 am: 7f6529bea6
am: ca36b82b31

Change-Id: I81b0b8a53d249f57bdaf76be104f4032639c9292

7 years agoMerge "Check for EXT_color_buffer_float in read_pixels_fbo_format_mismatch" into...
Tina Zhou [Tue, 4 Apr 2017 18:50:28 +0000 (18:50 +0000)]
Merge "Check for EXT_color_buffer_float in read_pixels_fbo_format_mismatch" into nougat-cts-dev am: 544e0e3b1d am: 05e378a71d am: 618ea5cfea
am: 32b5b828d5

Change-Id: I5e10fef2af37ddc0ddb1672d9a3a1175be6951c2

7 years agoCheck for EXT_color_buffer_float in read_pixels_fbo_format_mismatch am: 37e360591e...
Pyry Haulos [Tue, 4 Apr 2017 18:50:10 +0000 (18:50 +0000)]
Check for EXT_color_buffer_float in read_pixels_fbo_format_mismatch am: 37e360591e am: 101d60fc56 am: feb5fa2e2d
am: 6ede2d6d32

Change-Id: I7431fdc19467bfb32207cad474a9fa871f99ba03

7 years agoMerge "CP: Use empty region when buffer age is not supported" into nougat-cts-dev...
Tina Zhou [Tue, 4 Apr 2017 18:49:57 +0000 (18:49 +0000)]
Merge "CP: Use empty region when buffer age is not supported" into nougat-cts-dev am: b82263e2ad am: a2ce844bcb am: 82380ac1e2
am: 9027f9b8a4

Change-Id: I0853fdaf3df1c3eb77bcc06538e7f524ea4ce507

7 years agoCP: Use empty region when buffer age is not supported am: 8230646213 am: 5997f85ae1...
Kalle Raita [Tue, 4 Apr 2017 18:49:44 +0000 (18:49 +0000)]
CP: Use empty region when buffer age is not supported am: 8230646213 am: 5997f85ae1 am: 61e8a65852
am: 11a76fa000

Change-Id: I5ea20cffea29cc49f6317765979da9691a932058

7 years agoMerge "Fix deStrnlen fall-back implementation" into nougat-cts-dev am: a04db6628e...
Tina Zhou [Tue, 4 Apr 2017 18:49:32 +0000 (18:49 +0000)]
Merge "Fix deStrnlen fall-back implementation" into nougat-cts-dev am: a04db6628e am: b484689e86 am: b7b7984913
am: d12482a525

Change-Id: Ia2a63853ace7455d47b6b993d1b0727f646b67b2

7 years agoFix deStrnlen fall-back implementation am: 54ebe093a9 am: d4fee8c43b am: 778bc2435a
Pyry Haulos [Tue, 4 Apr 2017 18:49:16 +0000 (18:49 +0000)]
Fix deStrnlen fall-back implementation am: 54ebe093a9 am: d4fee8c43b am: 778bc2435a
am: 583765b8b2

Change-Id: Icb630f435792bc2d4c337d701d1ef3e692ccf507

7 years agoMerge "Remove a few preprocessor cases testing undefined behavior" into nougat-cts...
Tina Zhou [Tue, 4 Apr 2017 18:49:01 +0000 (18:49 +0000)]
Merge "Remove a few preprocessor cases testing undefined behavior" into nougat-cts-dev am: 4275d2099c am: 75cbc40ebf am: 6ef846f260
am: 99e0f4ab5e

Change-Id: I88d345a383fba5bbe35b0f6cc4e926b7643ae2b0

7 years agoresolve merge conflicts of e5f7483 to master am: c4598ea31b am: 8e2e181bd6
Pyry Haulos [Tue, 4 Apr 2017 18:48:49 +0000 (18:48 +0000)]
resolve merge conflicts of e5f7483 to master am: c4598ea31b am: 8e2e181bd6
am: cd63b8bc85

Change-Id: Iec59d4a5e2d111f5e609cbffb567b4a94a1c9ff9