Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
Chih-Hung Hsieh | bded0f9 | 2016-08-01 22:33:13 -0700 | [diff] [blame] | 4 | # The clang-tidy google-explicit-constructor warning is issued to nearly |
| 5 | # 1000 conversion constructors in this project. They are from more than |
| 6 | # 500 source files. Most of them should be declared explicit, but many |
| 7 | # of them need to be implicit. Until we correctly mark them as explicit |
| 8 | # or NOLINT(implicit), we suppress the google-explicit-constructor check. |
| 9 | LOCAL_TIDY_CHECKS := -google-explicit-constructor |
| 10 | |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 11 | delibs_dir := $(LOCAL_PATH)/framework/delibs |
| 12 | deqp_dir := $(LOCAL_PATH)/ |
| 13 | |
| 14 | LOCAL_MODULE_TAGS := tests |
Pyry Haulos | 03700a8 | 2014-10-20 13:01:20 -0700 | [diff] [blame] | 15 | LOCAL_MODULE := libdeqp |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 16 | LOCAL_SRC_FILES := \ |
| 17 | execserver/xsDefs.cpp \ |
| 18 | execserver/xsExecutionServer.cpp \ |
| 19 | execserver/xsPosixFileReader.cpp \ |
| 20 | execserver/xsPosixTestProcess.cpp \ |
| 21 | execserver/xsProtocol.cpp \ |
| 22 | execserver/xsTcpServer.cpp \ |
| 23 | execserver/xsTestDriver.cpp \ |
| 24 | execserver/xsTestProcess.cpp \ |
| 25 | executor/xeBatchExecutor.cpp \ |
| 26 | executor/xeBatchResult.cpp \ |
| 27 | executor/xeCallQueue.cpp \ |
| 28 | executor/xeCommLink.cpp \ |
| 29 | executor/xeContainerFormatParser.cpp \ |
| 30 | executor/xeDefs.cpp \ |
| 31 | executor/xeLocalTcpIpLink.cpp \ |
| 32 | executor/xeTcpIpLink.cpp \ |
| 33 | executor/xeTestCase.cpp \ |
| 34 | executor/xeTestCaseListParser.cpp \ |
| 35 | executor/xeTestCaseResult.cpp \ |
| 36 | executor/xeTestLogParser.cpp \ |
| 37 | executor/xeTestLogWriter.cpp \ |
| 38 | executor/xeTestResultParser.cpp \ |
| 39 | executor/xeXMLParser.cpp \ |
| 40 | executor/xeXMLWriter.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 41 | external/vulkancts/framework/vulkan/vkAllocationCallbackUtil.cpp \ |
| 42 | external/vulkancts/framework/vulkan/vkApiVersion.cpp \ |
| 43 | external/vulkancts/framework/vulkan/vkBinaryRegistry.cpp \ |
| 44 | external/vulkancts/framework/vulkan/vkBuilderUtil.cpp \ |
| 45 | external/vulkancts/framework/vulkan/vkDebugReportUtil.cpp \ |
| 46 | external/vulkancts/framework/vulkan/vkDefs.cpp \ |
| 47 | external/vulkancts/framework/vulkan/vkDeviceUtil.cpp \ |
Pyry Haulos | b5c2f56 | 2017-05-04 15:29:08 -0700 | [diff] [blame] | 48 | external/vulkancts/framework/vulkan/vkGlslProgram.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 49 | external/vulkancts/framework/vulkan/vkGlslToSpirV.cpp \ |
| 50 | external/vulkancts/framework/vulkan/vkImageUtil.cpp \ |
| 51 | external/vulkancts/framework/vulkan/vkMemUtil.cpp \ |
| 52 | external/vulkancts/framework/vulkan/vkNullDriver.cpp \ |
| 53 | external/vulkancts/framework/vulkan/vkPlatform.cpp \ |
| 54 | external/vulkancts/framework/vulkan/vkPrograms.cpp \ |
| 55 | external/vulkancts/framework/vulkan/vkQueryUtil.cpp \ |
| 56 | external/vulkancts/framework/vulkan/vkRef.cpp \ |
| 57 | external/vulkancts/framework/vulkan/vkRefUtil.cpp \ |
| 58 | external/vulkancts/framework/vulkan/vkSpirVAsm.cpp \ |
| 59 | external/vulkancts/framework/vulkan/vkSpirVProgram.cpp \ |
| 60 | external/vulkancts/framework/vulkan/vkStrUtil.cpp \ |
| 61 | external/vulkancts/framework/vulkan/vkTypeUtil.cpp \ |
| 62 | external/vulkancts/framework/vulkan/vkWsiPlatform.cpp \ |
| 63 | external/vulkancts/framework/vulkan/vkWsiUtil.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 64 | external/vulkancts/modules/vulkan/api/vktApiBufferAndImageAllocationUtil.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 65 | external/vulkancts/modules/vulkan/api/vktApiBufferComputeInstance.cpp \ |
| 66 | external/vulkancts/modules/vulkan/api/vktApiBufferTests.cpp \ |
| 67 | external/vulkancts/modules/vulkan/api/vktApiBufferViewAccessTests.cpp \ |
| 68 | external/vulkancts/modules/vulkan/api/vktApiBufferViewCreateTests.cpp \ |
| 69 | external/vulkancts/modules/vulkan/api/vktApiCommandBuffersTests.cpp \ |
| 70 | external/vulkancts/modules/vulkan/api/vktApiComputeInstanceResultBuffer.cpp \ |
| 71 | external/vulkancts/modules/vulkan/api/vktApiCopiesAndBlittingTests.cpp \ |
Collin Baker | f02e93f | 2016-05-24 13:50:43 -0700 | [diff] [blame] | 72 | external/vulkancts/modules/vulkan/api/vktApiDescriptorPoolTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 73 | external/vulkancts/modules/vulkan/api/vktApiDeviceInitializationTests.cpp \ |
Pyry Haulos | bda14e4 | 2016-09-28 12:46:55 -0700 | [diff] [blame] | 74 | external/vulkancts/modules/vulkan/api/vktApiExternalMemoryTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 75 | external/vulkancts/modules/vulkan/api/vktApiFeatureInfo.cpp \ |
| 76 | external/vulkancts/modules/vulkan/api/vktApiFillBufferTests.cpp \ |
Pyry Haulos | dc86209 | 2016-12-02 13:36:36 -0800 | [diff] [blame] | 77 | external/vulkancts/modules/vulkan/api/vktApiGranularityTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 78 | external/vulkancts/modules/vulkan/api/vktApiImageClearingTests.cpp \ |
Maciej Jesionowski | 310579c | 2016-09-16 13:07:28 +0200 | [diff] [blame] | 79 | external/vulkancts/modules/vulkan/api/vktApiNullHandleTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 80 | external/vulkancts/modules/vulkan/api/vktApiObjectManagementTests.cpp \ |
| 81 | external/vulkancts/modules/vulkan/api/vktApiSmokeTests.cpp \ |
| 82 | external/vulkancts/modules/vulkan/api/vktApiTests.cpp \ |
| 83 | external/vulkancts/modules/vulkan/binding_model/vktBindingModelTests.cpp \ |
| 84 | external/vulkancts/modules/vulkan/binding_model/vktBindingShaderAccessTests.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 85 | external/vulkancts/modules/vulkan/clipping/vktClippingTests.cpp \ |
| 86 | external/vulkancts/modules/vulkan/clipping/vktClippingUtil.cpp \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 87 | external/vulkancts/modules/vulkan/compute/vktComputeBasicComputeShaderTests.cpp \ |
| 88 | external/vulkancts/modules/vulkan/compute/vktComputeIndirectComputeDispatchTests.cpp \ |
| 89 | external/vulkancts/modules/vulkan/compute/vktComputeShaderBuiltinVarTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 90 | external/vulkancts/modules/vulkan/compute/vktComputeTests.cpp \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 91 | external/vulkancts/modules/vulkan/compute/vktComputeTestsUtil.cpp \ |
Pyry Haulos | 1ad1137 | 2016-10-13 13:13:36 -0700 | [diff] [blame] | 92 | external/vulkancts/modules/vulkan/draw/vktBasicDrawTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 93 | external/vulkancts/modules/vulkan/draw/vktDrawBaseClass.cpp \ |
| 94 | external/vulkancts/modules/vulkan/draw/vktDrawBufferObjectUtil.cpp \ |
| 95 | external/vulkancts/modules/vulkan/draw/vktDrawCreateInfoUtil.cpp \ |
| 96 | external/vulkancts/modules/vulkan/draw/vktDrawImageObjectUtil.cpp \ |
| 97 | external/vulkancts/modules/vulkan/draw/vktDrawIndexedTest.cpp \ |
| 98 | external/vulkancts/modules/vulkan/draw/vktDrawIndirectTest.cpp \ |
Pyry Haulos | 1ad1137 | 2016-10-13 13:13:36 -0700 | [diff] [blame] | 99 | external/vulkancts/modules/vulkan/draw/vktDrawInstancedTests.cpp \ |
Pyry Haulos | fdacaff | 2017-01-03 16:24:51 -0800 | [diff] [blame] | 100 | external/vulkancts/modules/vulkan/draw/vktDrawNegativeViewportHeightTests.cpp \ |
| 101 | external/vulkancts/modules/vulkan/draw/vktDrawShaderDrawParametersTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 102 | external/vulkancts/modules/vulkan/draw/vktDrawSimpleTest.cpp \ |
| 103 | external/vulkancts/modules/vulkan/draw/vktDrawTests.cpp \ |
| 104 | external/vulkancts/modules/vulkan/dynamic_state/vktDynamicStateBaseClass.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 105 | external/vulkancts/modules/vulkan/dynamic_state/vktDynamicStateCBTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 106 | external/vulkancts/modules/vulkan/dynamic_state/vktDynamicStateDSTests.cpp \ |
| 107 | external/vulkancts/modules/vulkan/dynamic_state/vktDynamicStateGeneralTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 108 | external/vulkancts/modules/vulkan/dynamic_state/vktDynamicStateRSTests.cpp \ |
| 109 | external/vulkancts/modules/vulkan/dynamic_state/vktDynamicStateTests.cpp \ |
| 110 | external/vulkancts/modules/vulkan/dynamic_state/vktDynamicStateVPTests.cpp \ |
Pyry Haulos | b653e45 | 2016-09-15 13:05:03 -0700 | [diff] [blame] | 111 | external/vulkancts/modules/vulkan/fragment_ops/vktFragmentOperationsEarlyFragmentTests.cpp \ |
Pyry Haulos | 3162aeb | 2016-09-08 13:14:06 -0700 | [diff] [blame] | 112 | external/vulkancts/modules/vulkan/fragment_ops/vktFragmentOperationsMakeUtil.cpp \ |
Pyry Haulos | b653e45 | 2016-09-15 13:05:03 -0700 | [diff] [blame] | 113 | external/vulkancts/modules/vulkan/fragment_ops/vktFragmentOperationsScissorMultiViewportTests.cpp \ |
Pyry Haulos | 3162aeb | 2016-09-08 13:14:06 -0700 | [diff] [blame] | 114 | external/vulkancts/modules/vulkan/fragment_ops/vktFragmentOperationsScissorTests.cpp \ |
| 115 | external/vulkancts/modules/vulkan/fragment_ops/vktFragmentOperationsTests.cpp \ |
Pyry Haulos | dbd01fe | 2016-11-11 08:42:38 -0800 | [diff] [blame] | 116 | external/vulkancts/modules/vulkan/geometry/vktGeometryBasicClass.cpp \ |
| 117 | external/vulkancts/modules/vulkan/geometry/vktGeometryBasicGeometryShaderTests.cpp \ |
| 118 | external/vulkancts/modules/vulkan/geometry/vktGeometryEmitGeometryShaderTests.cpp \ |
| 119 | external/vulkancts/modules/vulkan/geometry/vktGeometryInputGeometryShaderTests.cpp \ |
| 120 | external/vulkancts/modules/vulkan/geometry/vktGeometryInstancedRenderingTests.cpp \ |
| 121 | external/vulkancts/modules/vulkan/geometry/vktGeometryLayeredRenderingTests.cpp \ |
| 122 | external/vulkancts/modules/vulkan/geometry/vktGeometryTests.cpp \ |
| 123 | external/vulkancts/modules/vulkan/geometry/vktGeometryTestsUtil.cpp \ |
| 124 | external/vulkancts/modules/vulkan/geometry/vktGeometryVaryingGeometryShaderTests.cpp \ |
Pyry Haulos | 6ddb0a3 | 2016-03-25 12:08:53 -0700 | [diff] [blame] | 125 | external/vulkancts/modules/vulkan/image/vktImageAtomicOperationTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 126 | external/vulkancts/modules/vulkan/image/vktImageLoadStoreTests.cpp \ |
Pyry Haulos | b653e45 | 2016-09-15 13:05:03 -0700 | [diff] [blame] | 127 | external/vulkancts/modules/vulkan/image/vktImageLoadStoreUtil.cpp \ |
| 128 | external/vulkancts/modules/vulkan/image/vktImageMultisampleLoadStoreTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 129 | external/vulkancts/modules/vulkan/image/vktImageQualifiersTests.cpp \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 130 | external/vulkancts/modules/vulkan/image/vktImageSizeTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 131 | external/vulkancts/modules/vulkan/image/vktImageTests.cpp \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 132 | external/vulkancts/modules/vulkan/image/vktImageTestsUtil.cpp \ |
| 133 | external/vulkancts/modules/vulkan/image/vktImageTexture.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 134 | external/vulkancts/modules/vulkan/memory/vktMemoryAllocationTests.cpp \ |
| 135 | external/vulkancts/modules/vulkan/memory/vktMemoryMappingTests.cpp \ |
| 136 | external/vulkancts/modules/vulkan/memory/vktMemoryPipelineBarrierTests.cpp \ |
Maciej Jesionowski | aa1f92c | 2016-10-05 16:28:38 +0200 | [diff] [blame] | 137 | external/vulkancts/modules/vulkan/memory/vktMemoryRequirementsTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 138 | external/vulkancts/modules/vulkan/memory/vktMemoryTests.cpp \ |
| 139 | external/vulkancts/modules/vulkan/pipeline/vktPipelineBlendTests.cpp \ |
Pyry Haulos | 6ddb0a3 | 2016-03-25 12:08:53 -0700 | [diff] [blame] | 140 | external/vulkancts/modules/vulkan/pipeline/vktPipelineCacheTests.cpp \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 141 | external/vulkancts/modules/vulkan/pipeline/vktPipelineClearUtil.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 142 | external/vulkancts/modules/vulkan/pipeline/vktPipelineDepthTests.cpp \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 143 | external/vulkancts/modules/vulkan/pipeline/vktPipelineImageSamplingInstance.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 144 | external/vulkancts/modules/vulkan/pipeline/vktPipelineImageTests.cpp \ |
| 145 | external/vulkancts/modules/vulkan/pipeline/vktPipelineImageUtil.cpp \ |
| 146 | external/vulkancts/modules/vulkan/pipeline/vktPipelineImageViewTests.cpp \ |
| 147 | external/vulkancts/modules/vulkan/pipeline/vktPipelineInputAssemblyTests.cpp \ |
Pyry Haulos | 3deba4a | 2016-08-11 11:40:58 -0700 | [diff] [blame] | 148 | external/vulkancts/modules/vulkan/pipeline/vktPipelineMakeUtil.cpp \ |
Pyry Haulos | 3162aeb | 2016-09-08 13:14:06 -0700 | [diff] [blame] | 149 | external/vulkancts/modules/vulkan/pipeline/vktPipelineMultisampleImageTests.cpp \ |
| 150 | external/vulkancts/modules/vulkan/pipeline/vktPipelineMultisampleInterpolationTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 151 | external/vulkancts/modules/vulkan/pipeline/vktPipelineMultisampleTests.cpp \ |
Pyry Haulos | 3162aeb | 2016-09-08 13:14:06 -0700 | [diff] [blame] | 152 | external/vulkancts/modules/vulkan/pipeline/vktPipelineMultisampleTestsUtil.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 153 | external/vulkancts/modules/vulkan/pipeline/vktPipelinePushConstantTests.cpp \ |
| 154 | external/vulkancts/modules/vulkan/pipeline/vktPipelineReferenceRenderer.cpp \ |
Pyry Haulos | dc86209 | 2016-12-02 13:36:36 -0800 | [diff] [blame] | 155 | external/vulkancts/modules/vulkan/pipeline/vktPipelineRenderToImageTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 156 | external/vulkancts/modules/vulkan/pipeline/vktPipelineSamplerTests.cpp \ |
| 157 | external/vulkancts/modules/vulkan/pipeline/vktPipelineSpecConstantTests.cpp \ |
| 158 | external/vulkancts/modules/vulkan/pipeline/vktPipelineSpecConstantUtil.cpp \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 159 | external/vulkancts/modules/vulkan/pipeline/vktPipelineStencilTests.cpp \ |
Ying Wang | ed32dde | 2016-04-26 15:33:05 -0700 | [diff] [blame] | 160 | external/vulkancts/modules/vulkan/pipeline/vktPipelineTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 161 | external/vulkancts/modules/vulkan/pipeline/vktPipelineTimestampTests.cpp \ |
| 162 | external/vulkancts/modules/vulkan/pipeline/vktPipelineVertexInputTests.cpp \ |
| 163 | external/vulkancts/modules/vulkan/pipeline/vktPipelineVertexUtil.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 164 | external/vulkancts/modules/vulkan/query_pool/vktQueryPoolOcclusionTests.cpp \ |
| 165 | external/vulkancts/modules/vulkan/query_pool/vktQueryPoolTests.cpp \ |
| 166 | external/vulkancts/modules/vulkan/rasterization/vktRasterizationTests.cpp \ |
Mika Isojärvi | 0b6aab4 | 2017-03-28 13:45:01 -0700 | [diff] [blame] | 167 | external/vulkancts/modules/vulkan/renderpass/vktRenderPassMultisampleResolveTests.cpp \ |
Mika Isojärvi | ec44542 | 2017-03-21 16:12:51 -0700 | [diff] [blame] | 168 | external/vulkancts/modules/vulkan/renderpass/vktRenderPassMultisampleTests.cpp \ |
| 169 | external/vulkancts/modules/vulkan/renderpass/vktRenderPassTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 170 | external/vulkancts/modules/vulkan/shaderexecutor/vktOpaqueTypeIndexingTests.cpp \ |
| 171 | external/vulkancts/modules/vulkan/shaderexecutor/vktShaderBuiltinPrecisionTests.cpp \ |
| 172 | external/vulkancts/modules/vulkan/shaderexecutor/vktShaderBuiltinTests.cpp \ |
| 173 | external/vulkancts/modules/vulkan/shaderexecutor/vktShaderCommonFunctionTests.cpp \ |
| 174 | external/vulkancts/modules/vulkan/shaderexecutor/vktShaderExecutor.cpp \ |
| 175 | external/vulkancts/modules/vulkan/shaderexecutor/vktShaderIntegerFunctionTests.cpp \ |
| 176 | external/vulkancts/modules/vulkan/shaderexecutor/vktShaderPackingFunctionTests.cpp \ |
| 177 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRender.cpp \ |
Collin Baker | 8b0f318 | 2016-07-25 14:32:02 -0700 | [diff] [blame] | 178 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderBuiltinVarTests.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 179 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderDerivateTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 180 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderDiscardTests.cpp \ |
| 181 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderIndexingTests.cpp \ |
| 182 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderLoopTests.cpp \ |
| 183 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderMatrixTests.cpp \ |
| 184 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderOperatorTests.cpp \ |
| 185 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderReturnTests.cpp \ |
| 186 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderStructTests.cpp \ |
| 187 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderSwitchTests.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 188 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderTextureFunctionTests.cpp \ |
| 189 | external/vulkancts/modules/vulkan/shaderrender/vktShaderRenderTextureGatherTests.cpp \ |
Pyry Haulos | 6ddb0a3 | 2016-03-25 12:08:53 -0700 | [diff] [blame] | 190 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesBase.cpp \ |
| 191 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesBufferMemoryAliasing.cpp \ |
| 192 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesBufferSparseBinding.cpp \ |
| 193 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesBufferSparseResidency.cpp \ |
Pyry Haulos | dc86209 | 2016-12-02 13:36:36 -0800 | [diff] [blame] | 194 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesBufferTests.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 195 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesImageMemoryAliasing.cpp \ |
Pyry Haulos | 6ddb0a3 | 2016-03-25 12:08:53 -0700 | [diff] [blame] | 196 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesImageSparseBinding.cpp \ |
| 197 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesImageSparseResidency.cpp \ |
| 198 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesMipmapSparseResidency.cpp \ |
Pyry Haulos | dbd01fe | 2016-11-11 08:42:38 -0800 | [diff] [blame] | 199 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesQueueBindSparseTests.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 200 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesShaderIntrinsics.cpp \ |
Pyry Haulos | dbd01fe | 2016-11-11 08:42:38 -0800 | [diff] [blame] | 201 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesShaderIntrinsicsBase.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 202 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesShaderIntrinsicsSampled.cpp \ |
| 203 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesShaderIntrinsicsStorage.cpp \ |
Pyry Haulos | 6ddb0a3 | 2016-03-25 12:08:53 -0700 | [diff] [blame] | 204 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesTests.cpp \ |
| 205 | external/vulkancts/modules/vulkan/sparse_resources/vktSparseResourcesTestsUtil.cpp \ |
Lei Zhang | d54af5a | 2017-03-01 12:30:20 -0500 | [diff] [blame] | 206 | external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsm16bitStorageTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 207 | external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmComputeShaderCase.cpp \ |
| 208 | external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmComputeShaderTestUtil.cpp \ |
Pyry Haulos | 38cdcf9 | 2017-06-14 11:54:31 -0700 | [diff] [blame] | 209 | external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmGraphicsShaderTestUtil.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 210 | external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmInstructionTests.cpp \ |
| 211 | external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmTests.cpp \ |
Pyry Haulos | 38cdcf9 | 2017-06-14 11:54:31 -0700 | [diff] [blame] | 212 | external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmUtils.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 213 | external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmVariablePointersTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 214 | external/vulkancts/modules/vulkan/ssbo/vktSSBOLayoutCase.cpp \ |
| 215 | external/vulkancts/modules/vulkan/ssbo/vktSSBOLayoutTests.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 216 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationBasicEventTests.cpp \ |
| 217 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationBasicFenceTests.cpp \ |
| 218 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationBasicSemaphoreTests.cpp \ |
Pyry Haulos | bda14e4 | 2016-09-28 12:46:55 -0700 | [diff] [blame] | 219 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationCrossInstanceSharingTests.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 220 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationInternallySynchronizedObjectsTests.cpp \ |
| 221 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationOperation.cpp \ |
| 222 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationOperationMultiQueueTests.cpp \ |
| 223 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationOperationSingleQueueTests.cpp \ |
| 224 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationSmokeTests.cpp \ |
| 225 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationTests.cpp \ |
| 226 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationUtil.cpp \ |
Piers Daniell | 1077dac | 2017-05-17 14:39:05 -0600 | [diff] [blame] | 227 | external/vulkancts/modules/vulkan/synchronization/vktSynchronizationWin32KeyedMutexTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 228 | external/vulkancts/modules/vulkan/tessellation/vktTessellationCommonEdgeTests.cpp \ |
| 229 | external/vulkancts/modules/vulkan/tessellation/vktTessellationCoordinatesTests.cpp \ |
| 230 | external/vulkancts/modules/vulkan/tessellation/vktTessellationFractionalSpacingTests.cpp \ |
| 231 | external/vulkancts/modules/vulkan/tessellation/vktTessellationGeometryGridRenderTests.cpp \ |
| 232 | external/vulkancts/modules/vulkan/tessellation/vktTessellationGeometryPassthroughTests.cpp \ |
| 233 | external/vulkancts/modules/vulkan/tessellation/vktTessellationGeometryPointSizeTests.cpp \ |
| 234 | external/vulkancts/modules/vulkan/tessellation/vktTessellationInvarianceTests.cpp \ |
| 235 | external/vulkancts/modules/vulkan/tessellation/vktTessellationLimitsTests.cpp \ |
| 236 | external/vulkancts/modules/vulkan/tessellation/vktTessellationMiscDrawTests.cpp \ |
| 237 | external/vulkancts/modules/vulkan/tessellation/vktTessellationPrimitiveDiscardTests.cpp \ |
| 238 | external/vulkancts/modules/vulkan/tessellation/vktTessellationShaderInputOutputTests.cpp \ |
| 239 | external/vulkancts/modules/vulkan/tessellation/vktTessellationTests.cpp \ |
| 240 | external/vulkancts/modules/vulkan/tessellation/vktTessellationUserDefinedIO.cpp \ |
| 241 | external/vulkancts/modules/vulkan/tessellation/vktTessellationUtil.cpp \ |
| 242 | external/vulkancts/modules/vulkan/tessellation/vktTessellationWindingTests.cpp \ |
Pyry Haulos | ec6fe56 | 2016-09-15 13:03:24 -0700 | [diff] [blame] | 243 | external/vulkancts/modules/vulkan/texture/vktSampleVerifier.cpp \ |
| 244 | external/vulkancts/modules/vulkan/texture/vktSampleVerifierUtil.cpp \ |
Pyry Haulos | 179031e | 2016-11-18 10:40:10 -0800 | [diff] [blame] | 245 | external/vulkancts/modules/vulkan/texture/vktTextureFilteringAnisotropyTests.cpp \ |
Pyry Haulos | ec6fe56 | 2016-09-15 13:03:24 -0700 | [diff] [blame] | 246 | external/vulkancts/modules/vulkan/texture/vktTextureFilteringExplicitLodTests.cpp \ |
| 247 | external/vulkancts/modules/vulkan/texture/vktTextureFilteringTests.cpp \ |
| 248 | external/vulkancts/modules/vulkan/texture/vktTextureMipmapTests.cpp \ |
Pyry Haulos | 38b34cd | 2016-09-22 13:12:16 -0700 | [diff] [blame] | 249 | external/vulkancts/modules/vulkan/texture/vktTextureShadowTests.cpp \ |
Pyry Haulos | ec6fe56 | 2016-09-15 13:03:24 -0700 | [diff] [blame] | 250 | external/vulkancts/modules/vulkan/texture/vktTextureTestUtil.cpp \ |
| 251 | external/vulkancts/modules/vulkan/texture/vktTextureTests.cpp \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 252 | external/vulkancts/modules/vulkan/ubo/vktRandomUniformBlockCase.cpp \ |
| 253 | external/vulkancts/modules/vulkan/ubo/vktUniformBlockCase.cpp \ |
| 254 | external/vulkancts/modules/vulkan/ubo/vktUniformBlockTests.cpp \ |
Pyry Haulos | bda14e4 | 2016-09-28 12:46:55 -0700 | [diff] [blame] | 255 | external/vulkancts/modules/vulkan/vktExternalMemoryUtil.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 256 | external/vulkancts/modules/vulkan/vktInfoTests.cpp \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 257 | external/vulkancts/modules/vulkan/vktShaderLibrary.cpp \ |
| 258 | external/vulkancts/modules/vulkan/vktTestCase.cpp \ |
| 259 | external/vulkancts/modules/vulkan/vktTestCaseUtil.cpp \ |
| 260 | external/vulkancts/modules/vulkan/vktTestGroupUtil.cpp \ |
| 261 | external/vulkancts/modules/vulkan/vktTestPackage.cpp \ |
| 262 | external/vulkancts/modules/vulkan/vktTestPackageEntry.cpp \ |
Ian Elliott | b1b66e2 | 2017-01-15 14:28:01 -0800 | [diff] [blame] | 263 | external/vulkancts/modules/vulkan/wsi/vktWsiDisplayTimingTests.cpp \ |
Pyry Haulos | 8f46e5c | 2017-05-12 13:26:36 -0700 | [diff] [blame] | 264 | external/vulkancts/modules/vulkan/wsi/vktWsiIncrementalPresentTests.cpp \ |
Chris Forbes | a11c1a3 | 2017-02-03 09:42:12 +1300 | [diff] [blame] | 265 | external/vulkancts/modules/vulkan/wsi/vktWsiSharedPresentableImageTests.cpp \ |
Pyry Haulos | cb1582a | 2016-03-08 15:52:58 -0800 | [diff] [blame] | 266 | external/vulkancts/modules/vulkan/wsi/vktWsiSurfaceTests.cpp \ |
Pyry Haulos | 88ae848 | 2016-03-15 13:46:47 -0700 | [diff] [blame] | 267 | external/vulkancts/modules/vulkan/wsi/vktWsiSwapchainTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 268 | external/vulkancts/modules/vulkan/wsi/vktWsiTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 269 | framework/common/tcuApp.cpp \ |
| 270 | framework/common/tcuArray.cpp \ |
| 271 | framework/common/tcuAstcUtil.cpp \ |
| 272 | framework/common/tcuBilinearImageCompare.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 273 | framework/common/tcuCPUWarmup.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 274 | framework/common/tcuCommandLine.cpp \ |
| 275 | framework/common/tcuCompressedTexture.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 276 | framework/common/tcuDefs.cpp \ |
| 277 | framework/common/tcuEither.cpp \ |
| 278 | framework/common/tcuFactoryRegistry.cpp \ |
| 279 | framework/common/tcuFloat.cpp \ |
| 280 | framework/common/tcuFloatFormat.cpp \ |
| 281 | framework/common/tcuFunctionLibrary.cpp \ |
| 282 | framework/common/tcuFuzzyImageCompare.cpp \ |
| 283 | framework/common/tcuImageCompare.cpp \ |
| 284 | framework/common/tcuImageIO.cpp \ |
| 285 | framework/common/tcuInterval.cpp \ |
| 286 | framework/common/tcuMatrix.cpp \ |
| 287 | framework/common/tcuMaybe.cpp \ |
| 288 | framework/common/tcuPlatform.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 289 | framework/common/tcuRGBA.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 290 | framework/common/tcuRandomValueIterator.cpp \ |
| 291 | framework/common/tcuRasterizationVerifier.cpp \ |
| 292 | framework/common/tcuRenderTarget.cpp \ |
| 293 | framework/common/tcuResource.cpp \ |
| 294 | framework/common/tcuResultCollector.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 295 | framework/common/tcuSeedBuilder.cpp \ |
| 296 | framework/common/tcuStringTemplate.cpp \ |
| 297 | framework/common/tcuSurface.cpp \ |
| 298 | framework/common/tcuSurfaceAccess.cpp \ |
| 299 | framework/common/tcuTestCase.cpp \ |
| 300 | framework/common/tcuTestContext.cpp \ |
| 301 | framework/common/tcuTestHierarchyIterator.cpp \ |
| 302 | framework/common/tcuTestHierarchyUtil.cpp \ |
| 303 | framework/common/tcuTestLog.cpp \ |
| 304 | framework/common/tcuTestPackage.cpp \ |
| 305 | framework/common/tcuTestSessionExecutor.cpp \ |
| 306 | framework/common/tcuTexCompareVerifier.cpp \ |
| 307 | framework/common/tcuTexLookupVerifier.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 308 | framework/common/tcuTexVerifierUtil.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 309 | framework/common/tcuTexture.cpp \ |
| 310 | framework/common/tcuTextureUtil.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 311 | framework/common/tcuThreadUtil.cpp \ |
| 312 | framework/delibs/debase/deDefs.c \ |
| 313 | framework/delibs/debase/deFloat16.c \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 314 | framework/delibs/debase/deFloat16Test.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 315 | framework/delibs/debase/deInt32.c \ |
| 316 | framework/delibs/debase/deInt32Test.c \ |
| 317 | framework/delibs/debase/deMath.c \ |
| 318 | framework/delibs/debase/deMathTest.c \ |
| 319 | framework/delibs/debase/deMemory.c \ |
| 320 | framework/delibs/debase/deRandom.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 321 | framework/delibs/debase/deSha1.c \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 322 | framework/delibs/debase/deString.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 323 | framework/delibs/decpp/deAppendList.cpp \ |
| 324 | framework/delibs/decpp/deArrayBuffer.cpp \ |
| 325 | framework/delibs/decpp/deArrayUtil.cpp \ |
| 326 | framework/delibs/decpp/deBlockBuffer.cpp \ |
| 327 | framework/delibs/decpp/deCommandLine.cpp \ |
| 328 | framework/delibs/decpp/deDefs.cpp \ |
| 329 | framework/delibs/decpp/deDirectoryIterator.cpp \ |
| 330 | framework/delibs/decpp/deDynamicLibrary.cpp \ |
| 331 | framework/delibs/decpp/deFilePath.cpp \ |
| 332 | framework/delibs/decpp/deMemPool.cpp \ |
| 333 | framework/delibs/decpp/deMeta.cpp \ |
| 334 | framework/delibs/decpp/deMutex.cpp \ |
| 335 | framework/delibs/decpp/dePoolArray.cpp \ |
| 336 | framework/delibs/decpp/dePoolString.cpp \ |
| 337 | framework/delibs/decpp/deProcess.cpp \ |
| 338 | framework/delibs/decpp/deRandom.cpp \ |
| 339 | framework/delibs/decpp/deRingBuffer.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 340 | framework/delibs/decpp/deSTLUtil.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 341 | framework/delibs/decpp/deSemaphore.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 342 | framework/delibs/decpp/deSha1.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 343 | framework/delibs/decpp/deSharedPtr.cpp \ |
| 344 | framework/delibs/decpp/deSocket.cpp \ |
| 345 | framework/delibs/decpp/deSpinBarrier.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 346 | framework/delibs/decpp/deStringUtil.cpp \ |
| 347 | framework/delibs/decpp/deThread.cpp \ |
| 348 | framework/delibs/decpp/deThreadLocal.cpp \ |
| 349 | framework/delibs/decpp/deThreadSafeRingBuffer.cpp \ |
| 350 | framework/delibs/decpp/deUniquePtr.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 351 | framework/delibs/deimage/deImage.c \ |
| 352 | framework/delibs/deimage/deTarga.c \ |
| 353 | framework/delibs/depool/deMemPool.c \ |
| 354 | framework/delibs/depool/dePoolArray.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 355 | framework/delibs/depool/dePoolHash.c \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 356 | framework/delibs/depool/dePoolHashArray.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 357 | framework/delibs/depool/dePoolHashSet.c \ |
| 358 | framework/delibs/depool/dePoolHeap.c \ |
| 359 | framework/delibs/depool/dePoolMultiSet.c \ |
| 360 | framework/delibs/depool/dePoolSet.c \ |
| 361 | framework/delibs/depool/dePoolStringBuilder.c \ |
| 362 | framework/delibs/depool/dePoolTest.c \ |
| 363 | framework/delibs/destream/deFileStream.c \ |
| 364 | framework/delibs/destream/deRingbuffer.c \ |
| 365 | framework/delibs/destream/deStreamCpyThread.c \ |
| 366 | framework/delibs/destream/deThreadStream.c \ |
| 367 | framework/delibs/dethread/deAtomic.c \ |
| 368 | framework/delibs/dethread/deSingleton.c \ |
Jarkko Pöyry | cb82ed7 | 2015-01-26 18:52:33 -0800 | [diff] [blame] | 369 | framework/delibs/dethread/deThreadTest.c \ |
Pyry Haulos | efb83e1 | 2016-01-20 13:23:45 -0800 | [diff] [blame] | 370 | framework/delibs/dethread/unix/deMutexUnix.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 371 | framework/delibs/dethread/unix/deNamedSemaphoreUnix.c \ |
| 372 | framework/delibs/dethread/unix/deSemaphoreUnix.c \ |
| 373 | framework/delibs/dethread/unix/deThreadLocalUnix.c \ |
| 374 | framework/delibs/dethread/unix/deThreadUnix.c \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 375 | framework/delibs/dethread/win32/deMutexWin32.c \ |
| 376 | framework/delibs/dethread/win32/deSemaphoreWin32.c \ |
| 377 | framework/delibs/dethread/win32/deThreadLocalWin32.c \ |
| 378 | framework/delibs/dethread/win32/deThreadWin32.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 379 | framework/delibs/deutil/deClock.c \ |
Pyry Haulos | 4e3ea87 | 2015-03-20 11:06:41 -0700 | [diff] [blame] | 380 | framework/delibs/deutil/deCommandLine.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 381 | framework/delibs/deutil/deDynamicLibrary.c \ |
Jarkko Pöyry | cb82ed7 | 2015-01-26 18:52:33 -0800 | [diff] [blame] | 382 | framework/delibs/deutil/deFile.c \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 383 | framework/delibs/deutil/deProcess.c \ |
| 384 | framework/delibs/deutil/deSocket.c \ |
| 385 | framework/delibs/deutil/deTimer.c \ |
| 386 | framework/delibs/deutil/deTimerTest.c \ |
| 387 | framework/egl/egluCallLogWrapper.cpp \ |
| 388 | framework/egl/egluConfigFilter.cpp \ |
Jarkko Pöyry | cb82ed7 | 2015-01-26 18:52:33 -0800 | [diff] [blame] | 389 | framework/egl/egluConfigInfo.cpp \ |
Pyry Haulos | 4e3ea87 | 2015-03-20 11:06:41 -0700 | [diff] [blame] | 390 | framework/egl/egluDefs.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 391 | framework/egl/egluGLContextFactory.cpp \ |
| 392 | framework/egl/egluGLFunctionLoader.cpp \ |
| 393 | framework/egl/egluGLUtil.cpp \ |
| 394 | framework/egl/egluNativeDisplay.cpp \ |
Jarkko Pöyry | ab44fc6 | 2015-02-12 15:22:19 -0800 | [diff] [blame] | 395 | framework/egl/egluNativePixmap.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 396 | framework/egl/egluNativeWindow.cpp \ |
Pyry Haulos | 4e3ea87 | 2015-03-20 11:06:41 -0700 | [diff] [blame] | 397 | framework/egl/egluPlatform.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 398 | framework/egl/egluStaticESLibrary.cpp \ |
| 399 | framework/egl/egluStrUtil.cpp \ |
| 400 | framework/egl/egluUnique.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 401 | framework/egl/egluUtil.cpp \ |
Pyry Haulos | 4e3ea87 | 2015-03-20 11:06:41 -0700 | [diff] [blame] | 402 | framework/egl/wrapper/eglwDefs.cpp \ |
| 403 | framework/egl/wrapper/eglwFunctions.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 404 | framework/egl/wrapper/eglwLibrary.cpp \ |
| 405 | framework/opengl/gluCallLogWrapper.cpp \ |
Pyry Haulos | 4e3ea87 | 2015-03-20 11:06:41 -0700 | [diff] [blame] | 406 | framework/opengl/gluContextFactory.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 407 | framework/opengl/gluContextInfo.cpp \ |
| 408 | framework/opengl/gluDefs.cpp \ |
| 409 | framework/opengl/gluDrawUtil.cpp \ |
| 410 | framework/opengl/gluDummyRenderContext.cpp \ |
| 411 | framework/opengl/gluES3PlusWrapperContext.cpp \ |
| 412 | framework/opengl/gluFboRenderContext.cpp \ |
| 413 | framework/opengl/gluObjectWrapper.cpp \ |
| 414 | framework/opengl/gluPixelTransfer.cpp \ |
| 415 | framework/opengl/gluPlatform.cpp \ |
| 416 | framework/opengl/gluProgramInterfaceQuery.cpp \ |
| 417 | framework/opengl/gluRenderConfig.cpp \ |
Jarkko Pöyry | 58aae3b | 2015-06-01 20:55:25 -0700 | [diff] [blame] | 418 | framework/opengl/gluRenderContext.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 419 | framework/opengl/gluShaderLibrary.cpp \ |
| 420 | framework/opengl/gluShaderProgram.cpp \ |
| 421 | framework/opengl/gluShaderUtil.cpp \ |
Mika Isojärvi | dd4a496 | 2015-11-02 15:53:48 -0800 | [diff] [blame] | 422 | framework/opengl/gluStateReset.cpp \ |
Pyry Haulos | fec5a84 | 2015-12-11 14:24:21 -0800 | [diff] [blame] | 423 | framework/opengl/gluStrUtil.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 424 | framework/opengl/gluTexture.cpp \ |
Jarkko Pöyry | d614817 | 2015-03-16 13:27:55 -0700 | [diff] [blame] | 425 | framework/opengl/gluTextureTestUtil.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 426 | framework/opengl/gluTextureUtil.cpp \ |
| 427 | framework/opengl/gluVarType.cpp \ |
| 428 | framework/opengl/gluVarTypeUtil.cpp \ |
| 429 | framework/opengl/simplereference/sglrContext.cpp \ |
| 430 | framework/opengl/simplereference/sglrContextUtil.cpp \ |
| 431 | framework/opengl/simplereference/sglrContextWrapper.cpp \ |
| 432 | framework/opengl/simplereference/sglrGLContext.cpp \ |
Jarkko Pöyry | 6b66fa8 | 2015-03-16 20:10:18 -0700 | [diff] [blame] | 433 | framework/opengl/simplereference/sglrReferenceContext.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 434 | framework/opengl/simplereference/sglrReferenceUtils.cpp \ |
| 435 | framework/opengl/simplereference/sglrShaderProgram.cpp \ |
| 436 | framework/opengl/wrapper/glwDefs.cpp \ |
| 437 | framework/opengl/wrapper/glwFunctions.cpp \ |
| 438 | framework/opengl/wrapper/glwInitES20Direct.cpp \ |
| 439 | framework/opengl/wrapper/glwInitES30Direct.cpp \ |
| 440 | framework/opengl/wrapper/glwInitFunctions.cpp \ |
| 441 | framework/opengl/wrapper/glwWrapper.cpp \ |
| 442 | framework/platform/android/tcuAndroidAssets.cpp \ |
Pyry Haulos | 3f4cf9e | 2015-04-09 16:01:58 -0700 | [diff] [blame] | 443 | framework/platform/android/tcuAndroidExecService.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 444 | framework/platform/android/tcuAndroidInternals.cpp \ |
| 445 | framework/platform/android/tcuAndroidJNI.cpp \ |
| 446 | framework/platform/android/tcuAndroidMain.cpp \ |
| 447 | framework/platform/android/tcuAndroidNativeActivity.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 448 | framework/platform/android/tcuAndroidPlatform.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 449 | framework/platform/android/tcuAndroidPlatformCapabilityQueryJNI.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 450 | framework/platform/android/tcuAndroidRenderActivity.cpp \ |
| 451 | framework/platform/android/tcuAndroidTestActivity.cpp \ |
Mika Isojärvi | 0256f8c | 2015-11-03 12:15:10 -0800 | [diff] [blame] | 452 | framework/platform/android/tcuAndroidUtil.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 453 | framework/platform/android/tcuAndroidWindow.cpp \ |
| 454 | framework/platform/android/tcuTestLogParserJNI.cpp \ |
| 455 | framework/qphelper/qpCrashHandler.c \ |
| 456 | framework/qphelper/qpDebugOut.c \ |
| 457 | framework/qphelper/qpInfo.c \ |
| 458 | framework/qphelper/qpTestLog.c \ |
| 459 | framework/qphelper/qpWatchDog.c \ |
| 460 | framework/qphelper/qpXmlWriter.c \ |
| 461 | framework/randomshaders/rsgBinaryOps.cpp \ |
| 462 | framework/randomshaders/rsgBuiltinFunctions.cpp \ |
| 463 | framework/randomshaders/rsgDefs.cpp \ |
| 464 | framework/randomshaders/rsgExecutionContext.cpp \ |
| 465 | framework/randomshaders/rsgExpression.cpp \ |
| 466 | framework/randomshaders/rsgExpressionGenerator.cpp \ |
| 467 | framework/randomshaders/rsgFunctionGenerator.cpp \ |
| 468 | framework/randomshaders/rsgGeneratorState.cpp \ |
| 469 | framework/randomshaders/rsgNameAllocator.cpp \ |
| 470 | framework/randomshaders/rsgParameters.cpp \ |
| 471 | framework/randomshaders/rsgPrettyPrinter.cpp \ |
| 472 | framework/randomshaders/rsgProgramExecutor.cpp \ |
| 473 | framework/randomshaders/rsgProgramGenerator.cpp \ |
| 474 | framework/randomshaders/rsgSamplers.cpp \ |
| 475 | framework/randomshaders/rsgShader.cpp \ |
| 476 | framework/randomshaders/rsgShaderGenerator.cpp \ |
| 477 | framework/randomshaders/rsgStatement.cpp \ |
| 478 | framework/randomshaders/rsgToken.cpp \ |
| 479 | framework/randomshaders/rsgUtils.cpp \ |
| 480 | framework/randomshaders/rsgVariable.cpp \ |
| 481 | framework/randomshaders/rsgVariableManager.cpp \ |
| 482 | framework/randomshaders/rsgVariableType.cpp \ |
| 483 | framework/randomshaders/rsgVariableValue.cpp \ |
| 484 | framework/referencerenderer/rrDefs.cpp \ |
| 485 | framework/referencerenderer/rrFragmentOperations.cpp \ |
| 486 | framework/referencerenderer/rrMultisamplePixelBufferAccess.cpp \ |
| 487 | framework/referencerenderer/rrPrimitivePacket.cpp \ |
| 488 | framework/referencerenderer/rrRasterizer.cpp \ |
| 489 | framework/referencerenderer/rrRenderer.cpp \ |
| 490 | framework/referencerenderer/rrShaders.cpp \ |
Mika Isojärvi | 4ab70cd | 2014-11-12 15:38:40 +0200 | [diff] [blame] | 491 | framework/referencerenderer/rrShadingContext.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 492 | framework/referencerenderer/rrVertexAttrib.cpp \ |
| 493 | framework/referencerenderer/rrVertexPacket.cpp \ |
| 494 | modules/egl/teglAndroidUtil.cpp \ |
| 495 | modules/egl/teglApiCase.cpp \ |
| 496 | modules/egl/teglBufferAgeTests.cpp \ |
| 497 | modules/egl/teglChooseConfigReference.cpp \ |
| 498 | modules/egl/teglChooseConfigTests.cpp \ |
| 499 | modules/egl/teglClientExtensionTests.cpp \ |
Pyry Haulos | 3c67e4f | 2014-12-19 15:45:39 -0800 | [diff] [blame] | 500 | modules/egl/teglColorClearCase.cpp \ |
| 501 | modules/egl/teglColorClearTests.cpp \ |
| 502 | modules/egl/teglConfigList.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 503 | modules/egl/teglCreateContextExtTests.cpp \ |
| 504 | modules/egl/teglCreateContextTests.cpp \ |
| 505 | modules/egl/teglCreateSurfaceTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 506 | modules/egl/teglGLES1RenderUtil.cpp \ |
| 507 | modules/egl/teglGLES2RenderUtil.cpp \ |
| 508 | modules/egl/teglGLES2SharedRenderingPerfTests.cpp \ |
| 509 | modules/egl/teglGLES2SharingTests.cpp \ |
| 510 | modules/egl/teglGLES2SharingThreadedTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 511 | modules/egl/teglGetFrameTimestampsTests.cpp \ |
| 512 | modules/egl/teglGetProcAddressTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 513 | modules/egl/teglImageFormatTests.cpp \ |
| 514 | modules/egl/teglImageTests.cpp \ |
| 515 | modules/egl/teglImageUtil.cpp \ |
| 516 | modules/egl/teglInfoTests.cpp \ |
| 517 | modules/egl/teglMakeCurrentPerfTests.cpp \ |
Pyry Haulos | fb19324 | 2015-09-01 13:56:41 -0700 | [diff] [blame] | 518 | modules/egl/teglMemoryStressTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 519 | modules/egl/teglMultiContextTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 520 | modules/egl/teglMultiThreadTests.cpp \ |
| 521 | modules/egl/teglMutableRenderBufferTests.cpp \ |
| 522 | modules/egl/teglNativeColorMappingTests.cpp \ |
| 523 | modules/egl/teglNativeCoordMappingTests.cpp \ |
| 524 | modules/egl/teglNegativeApiTests.cpp \ |
| 525 | modules/egl/teglNegativePartialUpdateTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 526 | modules/egl/teglPartialUpdateTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 527 | modules/egl/teglPreservingSwapTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 528 | modules/egl/teglQueryConfigTests.cpp \ |
| 529 | modules/egl/teglQueryContextTests.cpp \ |
| 530 | modules/egl/teglQuerySurfaceTests.cpp \ |
| 531 | modules/egl/teglRenderCase.cpp \ |
| 532 | modules/egl/teglRenderTests.cpp \ |
| 533 | modules/egl/teglResizeTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 534 | modules/egl/teglRobustnessTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 535 | modules/egl/teglSimpleConfigCase.cpp \ |
| 536 | modules/egl/teglSurfacelessContextTests.cpp \ |
| 537 | modules/egl/teglSwapBuffersTests.cpp \ |
| 538 | modules/egl/teglSwapBuffersWithDamageTests.cpp \ |
| 539 | modules/egl/teglSyncTests.cpp \ |
| 540 | modules/egl/teglTestCase.cpp \ |
| 541 | modules/egl/teglTestPackage.cpp \ |
| 542 | modules/egl/teglTestPackageEntry.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 543 | modules/egl/teglThreadCleanUpTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 544 | modules/egl/teglVGRenderUtil.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 545 | modules/gles2/accuracy/es2aAccuracyTests.cpp \ |
| 546 | modules/gles2/accuracy/es2aTextureFilteringTests.cpp \ |
| 547 | modules/gles2/accuracy/es2aTextureMipmapTests.cpp \ |
| 548 | modules/gles2/accuracy/es2aVaryingInterpolationTests.cpp \ |
| 549 | modules/gles2/functional/es2fApiCase.cpp \ |
| 550 | modules/gles2/functional/es2fAttribLocationTests.cpp \ |
| 551 | modules/gles2/functional/es2fBlendTests.cpp \ |
| 552 | modules/gles2/functional/es2fBooleanStateQueryTests.cpp \ |
| 553 | modules/gles2/functional/es2fBufferObjectQueryTests.cpp \ |
| 554 | modules/gles2/functional/es2fBufferTestUtil.cpp \ |
| 555 | modules/gles2/functional/es2fBufferWriteTests.cpp \ |
| 556 | modules/gles2/functional/es2fClippingTests.cpp \ |
| 557 | modules/gles2/functional/es2fColorClearTest.cpp \ |
| 558 | modules/gles2/functional/es2fDebugMarkerTests.cpp \ |
| 559 | modules/gles2/functional/es2fDefaultVertexAttributeTests.cpp \ |
| 560 | modules/gles2/functional/es2fDepthRangeTests.cpp \ |
| 561 | modules/gles2/functional/es2fDepthStencilClearTests.cpp \ |
| 562 | modules/gles2/functional/es2fDepthStencilTests.cpp \ |
| 563 | modules/gles2/functional/es2fDepthTests.cpp \ |
| 564 | modules/gles2/functional/es2fDitheringTests.cpp \ |
| 565 | modules/gles2/functional/es2fDrawTests.cpp \ |
| 566 | modules/gles2/functional/es2fFboApiTest.cpp \ |
| 567 | modules/gles2/functional/es2fFboCompletenessTests.cpp \ |
| 568 | modules/gles2/functional/es2fFboRenderTest.cpp \ |
| 569 | modules/gles2/functional/es2fFboStateQueryTests.cpp \ |
| 570 | modules/gles2/functional/es2fFloatStateQueryTests.cpp \ |
| 571 | modules/gles2/functional/es2fFlushFinishTests.cpp \ |
| 572 | modules/gles2/functional/es2fFragOpInteractionTests.cpp \ |
| 573 | modules/gles2/functional/es2fFunctionalTests.cpp \ |
| 574 | modules/gles2/functional/es2fImplementationLimitTests.cpp \ |
| 575 | modules/gles2/functional/es2fIntegerStateQueryTests.cpp \ |
| 576 | modules/gles2/functional/es2fLifetimeTests.cpp \ |
| 577 | modules/gles2/functional/es2fLightAmountTest.cpp \ |
| 578 | modules/gles2/functional/es2fMultisampleTests.cpp \ |
| 579 | modules/gles2/functional/es2fNegativeBufferApiTests.cpp \ |
| 580 | modules/gles2/functional/es2fNegativeFragmentApiTests.cpp \ |
| 581 | modules/gles2/functional/es2fNegativeShaderApiTests.cpp \ |
| 582 | modules/gles2/functional/es2fNegativeStateApiTests.cpp \ |
| 583 | modules/gles2/functional/es2fNegativeTextureApiTests.cpp \ |
| 584 | modules/gles2/functional/es2fNegativeVertexArrayApiTests.cpp \ |
| 585 | modules/gles2/functional/es2fPolygonOffsetTests.cpp \ |
| 586 | modules/gles2/functional/es2fPrerequisiteTests.cpp \ |
| 587 | modules/gles2/functional/es2fRandomFragmentOpTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 588 | modules/gles2/functional/es2fRandomShaderTests.cpp \ |
| 589 | modules/gles2/functional/es2fRasterizationTests.cpp \ |
Hengyuan Hu | db75754 | 2015-06-18 13:26:57 -0700 | [diff] [blame] | 590 | modules/gles2/functional/es2fRboStateQueryTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 591 | modules/gles2/functional/es2fReadPixelsTests.cpp \ |
| 592 | modules/gles2/functional/es2fScissorTests.cpp \ |
| 593 | modules/gles2/functional/es2fShaderAlgorithmTests.cpp \ |
| 594 | modules/gles2/functional/es2fShaderApiTests.cpp \ |
| 595 | modules/gles2/functional/es2fShaderBuiltinVarTests.cpp \ |
| 596 | modules/gles2/functional/es2fShaderConstExprTests.cpp \ |
| 597 | modules/gles2/functional/es2fShaderDiscardTests.cpp \ |
| 598 | modules/gles2/functional/es2fShaderExecuteTest.cpp \ |
| 599 | modules/gles2/functional/es2fShaderFragDataTests.cpp \ |
| 600 | modules/gles2/functional/es2fShaderIndexingTests.cpp \ |
| 601 | modules/gles2/functional/es2fShaderInvarianceTests.cpp \ |
| 602 | modules/gles2/functional/es2fShaderLoopTests.cpp \ |
| 603 | modules/gles2/functional/es2fShaderMatrixTests.cpp \ |
| 604 | modules/gles2/functional/es2fShaderOperatorTests.cpp \ |
| 605 | modules/gles2/functional/es2fShaderReturnTests.cpp \ |
| 606 | modules/gles2/functional/es2fShaderStateQueryTests.cpp \ |
| 607 | modules/gles2/functional/es2fShaderStructTests.cpp \ |
| 608 | modules/gles2/functional/es2fShaderTextureFunctionTests.cpp \ |
| 609 | modules/gles2/functional/es2fStencilTests.cpp \ |
| 610 | modules/gles2/functional/es2fStringQueryTests.cpp \ |
| 611 | modules/gles2/functional/es2fTextureCompletenessTests.cpp \ |
| 612 | modules/gles2/functional/es2fTextureFilteringTests.cpp \ |
| 613 | modules/gles2/functional/es2fTextureFormatTests.cpp \ |
| 614 | modules/gles2/functional/es2fTextureMipmapTests.cpp \ |
| 615 | modules/gles2/functional/es2fTextureSizeTests.cpp \ |
Hengyuan Hu | a7d5d01 | 2015-07-17 17:39:24 -0700 | [diff] [blame] | 616 | modules/gles2/functional/es2fTextureSpecificationTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 617 | modules/gles2/functional/es2fTextureStateQueryTests.cpp \ |
Hengyuan Hu | 5bf751a | 2015-07-08 16:32:44 -0700 | [diff] [blame] | 618 | modules/gles2/functional/es2fTextureUnitTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 619 | modules/gles2/functional/es2fTextureWrapTests.cpp \ |
| 620 | modules/gles2/functional/es2fUniformApiTests.cpp \ |
| 621 | modules/gles2/functional/es2fVertexArrayTest.cpp \ |
| 622 | modules/gles2/functional/es2fVertexTextureTests.cpp \ |
| 623 | modules/gles2/performance/es2pBlendTests.cpp \ |
| 624 | modules/gles2/performance/es2pDrawCallBatchingTests.cpp \ |
| 625 | modules/gles2/performance/es2pPerformanceTests.cpp \ |
| 626 | modules/gles2/performance/es2pRedundantStateChangeTests.cpp \ |
| 627 | modules/gles2/performance/es2pShaderCompilationCases.cpp \ |
Hengyuan Hu | d6dd725 | 2015-07-21 11:37:07 -0700 | [diff] [blame] | 628 | modules/gles2/performance/es2pShaderCompilerTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 629 | modules/gles2/performance/es2pShaderControlStatementTests.cpp \ |
| 630 | modules/gles2/performance/es2pShaderOperatorTests.cpp \ |
| 631 | modules/gles2/performance/es2pShaderOptimizationTests.cpp \ |
| 632 | modules/gles2/performance/es2pStateChangeCallTests.cpp \ |
| 633 | modules/gles2/performance/es2pStateChangeTests.cpp \ |
| 634 | modules/gles2/performance/es2pTextureCases.cpp \ |
| 635 | modules/gles2/performance/es2pTextureCountTests.cpp \ |
| 636 | modules/gles2/performance/es2pTextureFilteringTests.cpp \ |
| 637 | modules/gles2/performance/es2pTextureFormatTests.cpp \ |
| 638 | modules/gles2/performance/es2pTextureUploadTests.cpp \ |
| 639 | modules/gles2/stress/es2sDrawTests.cpp \ |
| 640 | modules/gles2/stress/es2sLongRunningTests.cpp \ |
| 641 | modules/gles2/stress/es2sMemoryTests.cpp \ |
| 642 | modules/gles2/stress/es2sSpecialFloatTests.cpp \ |
| 643 | modules/gles2/stress/es2sStressTests.cpp \ |
| 644 | modules/gles2/stress/es2sVertexArrayTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 645 | modules/gles2/tes2CapabilityTests.cpp \ |
| 646 | modules/gles2/tes2Context.cpp \ |
| 647 | modules/gles2/tes2InfoTests.cpp \ |
| 648 | modules/gles2/tes2TestCase.cpp \ |
| 649 | modules/gles2/tes2TestPackage.cpp \ |
| 650 | modules/gles2/tes2TestPackageEntry.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 651 | modules/gles3/accuracy/es3aAccuracyTests.cpp \ |
| 652 | modules/gles3/accuracy/es3aTextureFilteringTests.cpp \ |
| 653 | modules/gles3/accuracy/es3aTextureMipmapTests.cpp \ |
| 654 | modules/gles3/accuracy/es3aVaryingInterpolationTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 655 | modules/gles3/functional/es3fASTCDecompressionCases.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 656 | modules/gles3/functional/es3fApiCase.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 657 | modules/gles3/functional/es3fAttribLocationTests.cpp \ |
| 658 | modules/gles3/functional/es3fBlendTests.cpp \ |
| 659 | modules/gles3/functional/es3fBooleanStateQueryTests.cpp \ |
| 660 | modules/gles3/functional/es3fBufferCopyTests.cpp \ |
| 661 | modules/gles3/functional/es3fBufferMapTests.cpp \ |
Pyry Haulos | 1a9576a | 2015-05-20 15:36:20 -0700 | [diff] [blame] | 662 | modules/gles3/functional/es3fBufferObjectQueryTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 663 | modules/gles3/functional/es3fBufferWriteTests.cpp \ |
| 664 | modules/gles3/functional/es3fBuiltinPrecisionTests.cpp \ |
| 665 | modules/gles3/functional/es3fClippingTests.cpp \ |
| 666 | modules/gles3/functional/es3fColorClearTest.cpp \ |
| 667 | modules/gles3/functional/es3fCompressedTextureTests.cpp \ |
| 668 | modules/gles3/functional/es3fDefaultVertexArrayObjectTests.cpp \ |
| 669 | modules/gles3/functional/es3fDefaultVertexAttributeTests.cpp \ |
| 670 | modules/gles3/functional/es3fDepthStencilClearTests.cpp \ |
| 671 | modules/gles3/functional/es3fDepthStencilTests.cpp \ |
| 672 | modules/gles3/functional/es3fDepthTests.cpp \ |
| 673 | modules/gles3/functional/es3fDitheringTests.cpp \ |
| 674 | modules/gles3/functional/es3fDrawTests.cpp \ |
| 675 | modules/gles3/functional/es3fFboApiTests.cpp \ |
| 676 | modules/gles3/functional/es3fFboColorbufferTests.cpp \ |
| 677 | modules/gles3/functional/es3fFboCompletenessTests.cpp \ |
| 678 | modules/gles3/functional/es3fFboDepthbufferTests.cpp \ |
| 679 | modules/gles3/functional/es3fFboInvalidateTests.cpp \ |
| 680 | modules/gles3/functional/es3fFboMultisampleTests.cpp \ |
| 681 | modules/gles3/functional/es3fFboRenderTest.cpp \ |
| 682 | modules/gles3/functional/es3fFboStateQueryTests.cpp \ |
| 683 | modules/gles3/functional/es3fFboStencilbufferTests.cpp \ |
| 684 | modules/gles3/functional/es3fFboTestCase.cpp \ |
| 685 | modules/gles3/functional/es3fFboTestUtil.cpp \ |
| 686 | modules/gles3/functional/es3fFloatStateQueryTests.cpp \ |
| 687 | modules/gles3/functional/es3fFlushFinishTests.cpp \ |
| 688 | modules/gles3/functional/es3fFragDepthTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 689 | modules/gles3/functional/es3fFragOpInteractionTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 690 | modules/gles3/functional/es3fFragmentOutputTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 691 | modules/gles3/functional/es3fFramebufferBlitTests.cpp \ |
| 692 | modules/gles3/functional/es3fFunctionalTests.cpp \ |
| 693 | modules/gles3/functional/es3fImplementationLimitTests.cpp \ |
| 694 | modules/gles3/functional/es3fIndexedStateQueryTests.cpp \ |
| 695 | modules/gles3/functional/es3fInstancedRenderingTests.cpp \ |
| 696 | modules/gles3/functional/es3fInteger64StateQueryTests.cpp \ |
| 697 | modules/gles3/functional/es3fIntegerStateQueryTests.cpp \ |
| 698 | modules/gles3/functional/es3fInternalFormatQueryTests.cpp \ |
| 699 | modules/gles3/functional/es3fLifetimeTests.cpp \ |
| 700 | modules/gles3/functional/es3fMultisampleTests.cpp \ |
| 701 | modules/gles3/functional/es3fNegativeBufferApiTests.cpp \ |
| 702 | modules/gles3/functional/es3fNegativeFragmentApiTests.cpp \ |
| 703 | modules/gles3/functional/es3fNegativeShaderApiTests.cpp \ |
| 704 | modules/gles3/functional/es3fNegativeStateApiTests.cpp \ |
| 705 | modules/gles3/functional/es3fNegativeTextureApiTests.cpp \ |
| 706 | modules/gles3/functional/es3fNegativeVertexArrayApiTests.cpp \ |
| 707 | modules/gles3/functional/es3fOcclusionQueryTests.cpp \ |
| 708 | modules/gles3/functional/es3fPixelBufferObjectTests.cpp \ |
| 709 | modules/gles3/functional/es3fPolygonOffsetTests.cpp \ |
| 710 | modules/gles3/functional/es3fPrerequisiteTests.cpp \ |
| 711 | modules/gles3/functional/es3fPrimitiveRestartTests.cpp \ |
| 712 | modules/gles3/functional/es3fRandomFragmentOpTests.cpp \ |
| 713 | modules/gles3/functional/es3fRandomShaderTests.cpp \ |
| 714 | modules/gles3/functional/es3fRasterizationTests.cpp \ |
| 715 | modules/gles3/functional/es3fRasterizerDiscardTests.cpp \ |
| 716 | modules/gles3/functional/es3fRboStateQueryTests.cpp \ |
| 717 | modules/gles3/functional/es3fReadPixelsTests.cpp \ |
| 718 | modules/gles3/functional/es3fSamplerObjectTests.cpp \ |
| 719 | modules/gles3/functional/es3fSamplerStateQueryTests.cpp \ |
| 720 | modules/gles3/functional/es3fScissorTests.cpp \ |
| 721 | modules/gles3/functional/es3fShaderApiTests.cpp \ |
| 722 | modules/gles3/functional/es3fShaderBuiltinVarTests.cpp \ |
| 723 | modules/gles3/functional/es3fShaderCommonFunctionTests.cpp \ |
| 724 | modules/gles3/functional/es3fShaderConstExprTests.cpp \ |
| 725 | modules/gles3/functional/es3fShaderDerivateTests.cpp \ |
| 726 | modules/gles3/functional/es3fShaderDiscardTests.cpp \ |
| 727 | modules/gles3/functional/es3fShaderFragDataTests.cpp \ |
| 728 | modules/gles3/functional/es3fShaderIndexingTests.cpp \ |
| 729 | modules/gles3/functional/es3fShaderInvarianceTests.cpp \ |
| 730 | modules/gles3/functional/es3fShaderLoopTests.cpp \ |
| 731 | modules/gles3/functional/es3fShaderMatrixTests.cpp \ |
| 732 | modules/gles3/functional/es3fShaderOperatorTests.cpp \ |
| 733 | modules/gles3/functional/es3fShaderPackingFunctionTests.cpp \ |
| 734 | modules/gles3/functional/es3fShaderPrecisionTests.cpp \ |
| 735 | modules/gles3/functional/es3fShaderReturnTests.cpp \ |
| 736 | modules/gles3/functional/es3fShaderStateQueryTests.cpp \ |
| 737 | modules/gles3/functional/es3fShaderStructTests.cpp \ |
| 738 | modules/gles3/functional/es3fShaderSwitchTests.cpp \ |
| 739 | modules/gles3/functional/es3fShaderTextureFunctionTests.cpp \ |
| 740 | modules/gles3/functional/es3fStencilTests.cpp \ |
| 741 | modules/gles3/functional/es3fStringQueryTests.cpp \ |
| 742 | modules/gles3/functional/es3fSyncTests.cpp \ |
| 743 | modules/gles3/functional/es3fTextureFilteringTests.cpp \ |
| 744 | modules/gles3/functional/es3fTextureFormatTests.cpp \ |
| 745 | modules/gles3/functional/es3fTextureMipmapTests.cpp \ |
| 746 | modules/gles3/functional/es3fTextureShadowTests.cpp \ |
| 747 | modules/gles3/functional/es3fTextureSizeTests.cpp \ |
| 748 | modules/gles3/functional/es3fTextureSpecificationTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 749 | modules/gles3/functional/es3fTextureStateQueryTests.cpp \ |
| 750 | modules/gles3/functional/es3fTextureSwizzleTests.cpp \ |
| 751 | modules/gles3/functional/es3fTextureUnitTests.cpp \ |
| 752 | modules/gles3/functional/es3fTextureWrapTests.cpp \ |
| 753 | modules/gles3/functional/es3fTransformFeedbackTests.cpp \ |
| 754 | modules/gles3/functional/es3fUniformApiTests.cpp \ |
| 755 | modules/gles3/functional/es3fUniformBlockTests.cpp \ |
| 756 | modules/gles3/functional/es3fVertexArrayObjectTests.cpp \ |
| 757 | modules/gles3/functional/es3fVertexArrayTest.cpp \ |
| 758 | modules/gles3/functional/es3fVertexTextureTests.cpp \ |
| 759 | modules/gles3/performance/es3pBlendTests.cpp \ |
| 760 | modules/gles3/performance/es3pBufferDataUploadTests.cpp \ |
| 761 | modules/gles3/performance/es3pDepthTests.cpp \ |
| 762 | modules/gles3/performance/es3pPerformanceTests.cpp \ |
| 763 | modules/gles3/performance/es3pRedundantStateChangeTests.cpp \ |
| 764 | modules/gles3/performance/es3pShaderCompilationCases.cpp \ |
| 765 | modules/gles3/performance/es3pShaderCompilerTests.cpp \ |
Jarkko Pöyry | f38ef81 | 2015-04-16 15:49:10 -0700 | [diff] [blame] | 766 | modules/gles3/performance/es3pShaderControlStatementTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 767 | modules/gles3/performance/es3pShaderOperatorTests.cpp \ |
| 768 | modules/gles3/performance/es3pShaderOptimizationTests.cpp \ |
| 769 | modules/gles3/performance/es3pStateChangeCallTests.cpp \ |
| 770 | modules/gles3/performance/es3pStateChangeTests.cpp \ |
| 771 | modules/gles3/performance/es3pTextureCases.cpp \ |
| 772 | modules/gles3/performance/es3pTextureCountTests.cpp \ |
| 773 | modules/gles3/performance/es3pTextureFilteringTests.cpp \ |
| 774 | modules/gles3/performance/es3pTextureFormatTests.cpp \ |
| 775 | modules/gles3/stress/es3sDrawTests.cpp \ |
| 776 | modules/gles3/stress/es3sLongRunningShaderTests.cpp \ |
| 777 | modules/gles3/stress/es3sLongRunningTests.cpp \ |
| 778 | modules/gles3/stress/es3sLongShaderTests.cpp \ |
| 779 | modules/gles3/stress/es3sMemoryTests.cpp \ |
| 780 | modules/gles3/stress/es3sOcclusionQueryTests.cpp \ |
| 781 | modules/gles3/stress/es3sSpecialFloatTests.cpp \ |
| 782 | modules/gles3/stress/es3sStressTests.cpp \ |
| 783 | modules/gles3/stress/es3sSyncTests.cpp \ |
| 784 | modules/gles3/stress/es3sVertexArrayTests.cpp \ |
| 785 | modules/gles3/tes3Context.cpp \ |
| 786 | modules/gles3/tes3InfoTests.cpp \ |
| 787 | modules/gles3/tes3TestCase.cpp \ |
| 788 | modules/gles3/tes3TestPackage.cpp \ |
| 789 | modules/gles3/tes3TestPackageEntry.cpp \ |
| 790 | modules/gles31/functional/es31fAdvancedBlendTests.cpp \ |
| 791 | modules/gles31/functional/es31fAndroidExtensionPackES31ATests.cpp \ |
| 792 | modules/gles31/functional/es31fAtomicCounterTests.cpp \ |
| 793 | modules/gles31/functional/es31fBasicComputeShaderTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 794 | modules/gles31/functional/es31fBooleanStateQueryTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 795 | modules/gles31/functional/es31fBuiltinPrecisionTests.cpp \ |
| 796 | modules/gles31/functional/es31fComputeShaderBuiltinVarTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 797 | modules/gles31/functional/es31fCopyImageTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 798 | modules/gles31/functional/es31fDebugTests.cpp \ |
| 799 | modules/gles31/functional/es31fDefaultVertexArrayObjectTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 800 | modules/gles31/functional/es31fDrawBuffersIndexedTests.cpp \ |
| 801 | modules/gles31/functional/es31fDrawElementsBaseVertexTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 802 | modules/gles31/functional/es31fDrawTests.cpp \ |
| 803 | modules/gles31/functional/es31fFboColorbufferTests.cpp \ |
| 804 | modules/gles31/functional/es31fFboNoAttachmentTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 805 | modules/gles31/functional/es31fFboSRGBWriteControlTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 806 | modules/gles31/functional/es31fFboTestCase.cpp \ |
| 807 | modules/gles31/functional/es31fFboTestUtil.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 808 | modules/gles31/functional/es31fFramebufferDefaultStateQueryTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 809 | modules/gles31/functional/es31fFunctionalTests.cpp \ |
| 810 | modules/gles31/functional/es31fGeometryShaderTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 811 | modules/gles31/functional/es31fIndexedStateQueryTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 812 | modules/gles31/functional/es31fIndirectComputeDispatchTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 813 | modules/gles31/functional/es31fInfoLogQueryShared.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 814 | modules/gles31/functional/es31fIntegerStateQueryTests.cpp \ |
| 815 | modules/gles31/functional/es31fInternalFormatQueryTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 816 | modules/gles31/functional/es31fLayoutBindingTests.cpp \ |
| 817 | modules/gles31/functional/es31fMultisampleShaderRenderCase.cpp \ |
| 818 | modules/gles31/functional/es31fMultisampleTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 819 | modules/gles31/functional/es31fNegativeAdvancedBlendEquationTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 820 | modules/gles31/functional/es31fNegativeAtomicCounterTests.cpp \ |
| 821 | modules/gles31/functional/es31fNegativeBufferApiTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 822 | modules/gles31/functional/es31fNegativeComputeTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 823 | modules/gles31/functional/es31fNegativeFragmentApiTests.cpp \ |
| 824 | modules/gles31/functional/es31fNegativePreciseTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 825 | modules/gles31/functional/es31fNegativeSSBOBlockTests.cpp \ |
| 826 | modules/gles31/functional/es31fNegativeSampleVariablesTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 827 | modules/gles31/functional/es31fNegativeShaderApiTests.cpp \ |
| 828 | modules/gles31/functional/es31fNegativeShaderDirectiveTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 829 | modules/gles31/functional/es31fNegativeShaderFramebufferFetchTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 830 | modules/gles31/functional/es31fNegativeShaderFunctionTests.cpp \ |
| 831 | modules/gles31/functional/es31fNegativeShaderImageLoadStoreTests.cpp \ |
John Richardson | 51e20f1 | 2016-10-26 09:43:56 +0100 | [diff] [blame] | 832 | modules/gles31/functional/es31fNegativeShaderStorageTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 833 | modules/gles31/functional/es31fNegativeStateApiTests.cpp \ |
John Richardson | 1889817 | 2016-11-09 08:34:43 +0000 | [diff] [blame] | 834 | modules/gles31/functional/es31fNegativeTessellationTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 835 | modules/gles31/functional/es31fNegativeTestShared.cpp \ |
| 836 | modules/gles31/functional/es31fNegativeTextureApiTests.cpp \ |
| 837 | modules/gles31/functional/es31fNegativeVertexArrayApiTests.cpp \ |
| 838 | modules/gles31/functional/es31fOpaqueTypeIndexingTests.cpp \ |
| 839 | modules/gles31/functional/es31fPrimitiveBoundingBoxTests.cpp \ |
| 840 | modules/gles31/functional/es31fProgramInterfaceDefinition.cpp \ |
| 841 | modules/gles31/functional/es31fProgramInterfaceDefinitionUtil.cpp \ |
| 842 | modules/gles31/functional/es31fProgramInterfaceQueryTestCase.cpp \ |
| 843 | modules/gles31/functional/es31fProgramInterfaceQueryTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 844 | modules/gles31/functional/es31fProgramPipelineStateQueryTests.cpp \ |
| 845 | modules/gles31/functional/es31fProgramStateQueryTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 846 | modules/gles31/functional/es31fProgramUniformTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 847 | modules/gles31/functional/es31fSRGBDecodeTests.cpp \ |
| 848 | modules/gles31/functional/es31fSSBOArrayLengthTests.cpp \ |
| 849 | modules/gles31/functional/es31fSSBOLayoutCase.cpp \ |
| 850 | modules/gles31/functional/es31fSSBOLayoutTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 851 | modules/gles31/functional/es31fSampleShadingTests.cpp \ |
| 852 | modules/gles31/functional/es31fSampleVariableTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 853 | modules/gles31/functional/es31fSamplerStateQueryTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 854 | modules/gles31/functional/es31fSeparateShaderTests.cpp \ |
| 855 | modules/gles31/functional/es31fShaderAtomicOpTests.cpp \ |
| 856 | modules/gles31/functional/es31fShaderBuiltinConstantTests.cpp \ |
| 857 | modules/gles31/functional/es31fShaderCommonFunctionTests.cpp \ |
Mika Isojärvi | 58f3ba4 | 2017-07-07 15:46:05 -0700 | [diff] [blame] | 858 | modules/gles31/functional/es31fShaderFramebufferFetchTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 859 | modules/gles31/functional/es31fShaderHelperInvocationTests.cpp \ |
| 860 | modules/gles31/functional/es31fShaderImageLoadStoreTests.cpp \ |
| 861 | modules/gles31/functional/es31fShaderIntegerFunctionTests.cpp \ |
| 862 | modules/gles31/functional/es31fShaderMultisampleInterpolationStateQueryTests.cpp \ |
| 863 | modules/gles31/functional/es31fShaderMultisampleInterpolationTests.cpp \ |
| 864 | modules/gles31/functional/es31fShaderPackingFunctionTests.cpp \ |
| 865 | modules/gles31/functional/es31fShaderSharedVarTests.cpp \ |
| 866 | modules/gles31/functional/es31fShaderStateQueryTests.cpp \ |
| 867 | modules/gles31/functional/es31fShaderTextureSizeTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 868 | modules/gles31/functional/es31fStencilTexturingTests.cpp \ |
| 869 | modules/gles31/functional/es31fSynchronizationTests.cpp \ |
Jarkko Poyry | 8852c82 | 2014-09-11 10:20:23 +0300 | [diff] [blame] | 870 | modules/gles31/functional/es31fTessellationGeometryInteractionTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 871 | modules/gles31/functional/es31fTessellationTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 872 | modules/gles31/functional/es31fTextureBorderClampTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 873 | modules/gles31/functional/es31fTextureBufferTests.cpp \ |
| 874 | modules/gles31/functional/es31fTextureFilteringTests.cpp \ |
| 875 | modules/gles31/functional/es31fTextureFormatTests.cpp \ |
| 876 | modules/gles31/functional/es31fTextureGatherTests.cpp \ |
| 877 | modules/gles31/functional/es31fTextureLevelStateQueryTests.cpp \ |
| 878 | modules/gles31/functional/es31fTextureMultisampleTests.cpp \ |
| 879 | modules/gles31/functional/es31fTextureSpecificationTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 880 | modules/gles31/functional/es31fTextureStateQueryTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 881 | modules/gles31/functional/es31fUniformBlockTests.cpp \ |
| 882 | modules/gles31/functional/es31fUniformLocationTests.cpp \ |
| 883 | modules/gles31/functional/es31fVertexAttributeBindingStateQueryTests.cpp \ |
| 884 | modules/gles31/functional/es31fVertexAttributeBindingTests.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 885 | modules/gles31/stress/es31sDrawTests.cpp \ |
| 886 | modules/gles31/stress/es31sStressTests.cpp \ |
| 887 | modules/gles31/stress/es31sTessellationGeometryInteractionTests.cpp \ |
| 888 | modules/gles31/stress/es31sVertexAttributeBindingTests.cpp \ |
| 889 | modules/gles31/tes31Context.cpp \ |
| 890 | modules/gles31/tes31InfoTests.cpp \ |
| 891 | modules/gles31/tes31TestCase.cpp \ |
| 892 | modules/gles31/tes31TestPackage.cpp \ |
| 893 | modules/gles31/tes31TestPackageEntry.cpp \ |
| 894 | modules/glshared/glsAttributeLocationTests.cpp \ |
| 895 | modules/glshared/glsBufferTestUtil.cpp \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 896 | modules/glshared/glsBuiltinPrecisionTests.cpp \ |
| 897 | modules/glshared/glsCalibration.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 898 | modules/glshared/glsDrawTest.cpp \ |
| 899 | modules/glshared/glsFboCompletenessTests.cpp \ |
| 900 | modules/glshared/glsFboUtil.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 901 | modules/glshared/glsFragOpInteractionCase.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 902 | modules/glshared/glsFragmentOpUtil.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 903 | modules/glshared/glsInteractionTestUtil.cpp \ |
| 904 | modules/glshared/glsLifetimeTests.cpp \ |
Jarkko Pöyry | f38ef81 | 2015-04-16 15:49:10 -0700 | [diff] [blame] | 905 | modules/glshared/glsLongStressCase.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 906 | modules/glshared/glsLongStressTestUtil.cpp \ |
| 907 | modules/glshared/glsMemoryStressCase.cpp \ |
| 908 | modules/glshared/glsRandomShaderCase.cpp \ |
| 909 | modules/glshared/glsRandomShaderProgram.cpp \ |
| 910 | modules/glshared/glsRandomUniformBlockCase.cpp \ |
| 911 | modules/glshared/glsSamplerObjectTest.cpp \ |
| 912 | modules/glshared/glsScissorTests.cpp \ |
| 913 | modules/glshared/glsShaderConstExprTests.cpp \ |
| 914 | modules/glshared/glsShaderExecUtil.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 915 | modules/glshared/glsShaderLibrary.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 916 | modules/glshared/glsShaderLibraryCase.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 917 | modules/glshared/glsShaderPerformanceCase.cpp \ |
| 918 | modules/glshared/glsShaderPerformanceMeasurer.cpp \ |
| 919 | modules/glshared/glsShaderRenderCase.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 920 | modules/glshared/glsStateChangePerfTestCases.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 921 | modules/glshared/glsStateQueryUtil.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 922 | modules/glshared/glsTextureBufferCase.cpp \ |
| 923 | modules/glshared/glsTextureStateQueryTests.cpp \ |
| 924 | modules/glshared/glsTextureTestUtil.cpp \ |
| 925 | modules/glshared/glsUniformBlockCase.cpp \ |
| 926 | modules/glshared/glsVertexArrayTests.cpp \ |
| 927 | modules/internal/ditAstcTests.cpp \ |
| 928 | modules/internal/ditBuildInfoTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 929 | modules/internal/ditDelibsTests.cpp \ |
| 930 | modules/internal/ditFrameworkTests.cpp \ |
| 931 | modules/internal/ditImageCompareTests.cpp \ |
| 932 | modules/internal/ditImageIOTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 933 | modules/internal/ditSRGB8ConversionTest.cpp \ |
| 934 | modules/internal/ditSeedBuilderTests.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 935 | modules/internal/ditTestCase.cpp \ |
| 936 | modules/internal/ditTestLogTests.cpp \ |
| 937 | modules/internal/ditTestPackage.cpp \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 938 | modules/internal/ditTestPackageEntry.cpp \ |
| 939 | modules/internal/ditTextureFormatTests.cpp \ |
Mika Isojärvi | f011355 | 2017-07-14 15:20:31 -0700 | [diff] [blame^] | 940 | modules/internal/ditVulkanTests.cpp |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 941 | |
| 942 | LOCAL_C_INCLUDES := \ |
| 943 | frameworks/native/opengl/include \ |
| 944 | external/libpng \ |
| 945 | external/zlib \ |
| 946 | $(delibs_dir)/debase \ |
| 947 | $(delibs_dir)/decpp \ |
| 948 | $(delibs_dir)/depool \ |
| 949 | $(delibs_dir)/dethread \ |
| 950 | $(delibs_dir)/deutil \ |
| 951 | $(delibs_dir)/destream \ |
| 952 | $(deqp_dir)/framework/common \ |
| 953 | $(deqp_dir)/framework/qphelper \ |
| 954 | $(deqp_dir)/framework/platform/android \ |
| 955 | $(deqp_dir)/framework/egl \ |
Pyry Haulos | 3c67e4f | 2014-12-19 15:45:39 -0800 | [diff] [blame] | 956 | $(deqp_dir)/framework/egl/wrapper \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 957 | $(deqp_dir)/framework/opengl \ |
| 958 | $(deqp_dir)/framework/opengl/wrapper \ |
| 959 | $(deqp_dir)/framework/referencerenderer \ |
| 960 | $(deqp_dir)/framework/opengl/simplereference \ |
| 961 | $(deqp_dir)/framework/randomshaders \ |
Pyry Haulos | 1ea62af | 2015-04-14 11:05:09 -0700 | [diff] [blame] | 962 | $(deqp_dir)/modules/egl \ |
| 963 | $(deqp_dir)/modules/gles2 \ |
| 964 | $(deqp_dir)/modules/gles2/functional \ |
| 965 | $(deqp_dir)/modules/gles2/accuracy \ |
| 966 | $(deqp_dir)/modules/gles2/performance \ |
| 967 | $(deqp_dir)/modules/gles2/stress \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 968 | $(deqp_dir)/modules/gles3 \ |
| 969 | $(deqp_dir)/modules/gles3/functional \ |
| 970 | $(deqp_dir)/modules/gles3/accuracy \ |
| 971 | $(deqp_dir)/modules/gles3/performance \ |
| 972 | $(deqp_dir)/modules/gles3/stress \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 973 | $(deqp_dir)/modules/gles31 \ |
| 974 | $(deqp_dir)/modules/gles31/functional \ |
| 975 | $(deqp_dir)/modules/gles31/stress \ |
| 976 | $(deqp_dir)/modules/glshared \ |
| 977 | $(deqp_dir)/modules/glusecases \ |
| 978 | $(deqp_dir)/executor \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 979 | $(deqp_dir)/execserver \ |
| 980 | $(deqp_dir)/external/vulkancts/framework/vulkan \ |
| 981 | $(deqp_dir)/external/vulkancts/modules/vulkan \ |
| 982 | $(deqp_dir)/external/vulkancts/modules/vulkan/api \ |
| 983 | $(deqp_dir)/external/vulkancts/modules/vulkan/binding_model \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 984 | $(deqp_dir)/external/vulkancts/modules/vulkan/clipping \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 985 | $(deqp_dir)/external/vulkancts/modules/vulkan/compute \ |
| 986 | $(deqp_dir)/external/vulkancts/modules/vulkan/draw \ |
| 987 | $(deqp_dir)/external/vulkancts/modules/vulkan/dynamic_state \ |
Pyry Haulos | 3162aeb | 2016-09-08 13:14:06 -0700 | [diff] [blame] | 988 | $(deqp_dir)/external/vulkancts/modules/vulkan/fragment_ops \ |
Pyry Haulos | dbd01fe | 2016-11-11 08:42:38 -0800 | [diff] [blame] | 989 | $(deqp_dir)/external/vulkancts/modules/vulkan/geometry \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 990 | $(deqp_dir)/external/vulkancts/modules/vulkan/image \ |
| 991 | $(deqp_dir)/external/vulkancts/modules/vulkan/memory \ |
| 992 | $(deqp_dir)/external/vulkancts/modules/vulkan/pipeline \ |
| 993 | $(deqp_dir)/external/vulkancts/modules/vulkan/query_pool \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 994 | $(deqp_dir)/external/vulkancts/modules/vulkan/rasterization \ |
Mika Isojärvi | ec44542 | 2017-03-21 16:12:51 -0700 | [diff] [blame] | 995 | $(deqp_dir)/external/vulkancts/modules/vulkan/renderpass \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 996 | $(deqp_dir)/external/vulkancts/modules/vulkan/shaderexecutor \ |
| 997 | $(deqp_dir)/external/vulkancts/modules/vulkan/shaderrender \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 998 | $(deqp_dir)/external/vulkancts/modules/vulkan/sparse_resources \ |
Pyry Haulos | 9703ac2 | 2016-01-28 09:58:53 -0800 | [diff] [blame] | 999 | $(deqp_dir)/external/vulkancts/modules/vulkan/spirv_assembly \ |
| 1000 | $(deqp_dir)/external/vulkancts/modules/vulkan/ssbo \ |
Pyry Haulos | 114c802 | 2016-07-25 15:17:36 -0700 | [diff] [blame] | 1001 | $(deqp_dir)/external/vulkancts/modules/vulkan/synchronization \ |
Pyry Haulos | 3bbc752 | 2016-05-19 12:03:25 -0700 | [diff] [blame] | 1002 | $(deqp_dir)/external/vulkancts/modules/vulkan/tessellation \ |
Pyry Haulos | ec6fe56 | 2016-09-15 13:03:24 -0700 | [diff] [blame] | 1003 | $(deqp_dir)/external/vulkancts/modules/vulkan/texture \ |
Pyry Haulos | cb1582a | 2016-03-08 15:52:58 -0800 | [diff] [blame] | 1004 | $(deqp_dir)/external/vulkancts/modules/vulkan/ubo \ |
| 1005 | $(deqp_dir)/external/vulkancts/modules/vulkan/wsi |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1006 | |
| 1007 | deqp_compile_flags := \ |
Pyry Haulos | 85a0a1c | 2015-04-15 09:36:28 -0700 | [diff] [blame] | 1008 | -DDEQP_SUPPORT_GLES1=1 \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1009 | -DDE_ANDROID_API=9 \ |
| 1010 | -D_XOPEN_SOURCE=600 \ |
| 1011 | -DDEQP_TARGET_NAME=\"android\" \ |
| 1012 | -DDEQP_GLES3_RUNTIME_LOAD=1 \ |
| 1013 | -DDEQP_GLES2_RUNTIME_LOAD=1 \ |
Jarkko Pöyry | 0faddb5 | 2015-05-29 18:39:00 -0700 | [diff] [blame] | 1014 | -DQP_SUPPORT_PNG=1 \ |
| 1015 | -Wconversion \ |
Mika Isojärvi | e2af5c7 | 2017-02-06 14:48:37 -0800 | [diff] [blame] | 1016 | -fwrapv \ |
Jarkko Pöyry | 0faddb5 | 2015-05-29 18:39:00 -0700 | [diff] [blame] | 1017 | -Wno-sign-conversion |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1018 | |
| 1019 | LOCAL_SHARED_LIBRARIES := \ |
| 1020 | libEGL \ |
| 1021 | libGLESv2 \ |
| 1022 | libandroid \ |
| 1023 | liblog \ |
| 1024 | libm \ |
| 1025 | libc \ |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1026 | libz \ |
| 1027 | libdl |
| 1028 | |
Brian Carlstrom | f6346ad | 2016-01-13 11:48:47 -0800 | [diff] [blame] | 1029 | LOCAL_STATIC_LIBRARIES := \ |
| 1030 | libpng_ndk \ |
| 1031 | |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1032 | LOCAL_CFLAGS += \ |
Mika Isojärvi | f006696 | 2016-03-09 14:28:16 -0800 | [diff] [blame] | 1033 | $(deqp_compile_flags) |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1034 | |
Dan Albert | e0ef711 | 2016-09-08 16:07:20 -0700 | [diff] [blame] | 1035 | LOCAL_SDK_VERSION := 22 |
Mika Isojärvi | e2af5c7 | 2017-02-06 14:48:37 -0800 | [diff] [blame] | 1036 | LOCAL_CPPFLAGS += -Wno-non-virtual-dtor -Wno-delete-non-virtual-dtor |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1037 | LOCAL_NDK_STL_VARIANT := gnustl_static |
| 1038 | LOCAL_RTTI_FLAG := -frtti -fexceptions |
Mika Isojärvi | 7de597c | 2014-09-17 11:37:36 +0300 | [diff] [blame] | 1039 | LOCAL_MULTILIB := both |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1040 | |
Jarkko Poyry | 3c82736 | 2014-09-02 11:48:52 +0300 | [diff] [blame] | 1041 | include $(BUILD_SHARED_LIBRARY) |
| 1042 | |
Kalle Raita | 64d9cc3 | 2015-10-12 16:18:15 -0700 | [diff] [blame] | 1043 | |
| 1044 | # Build the test APKs using their own makefiles |
| 1045 | # include $(call all-makefiles-under,$(LOCAL_PATH)/android) |
| 1046 | |
| 1047 | include $(LOCAL_PATH)/android/package/Android.mk $(LOCAL_PATH)/android/cts/Android.mk |