Searched +full:- +full:- +full:devsim (Results 1 – 7 of 7) sorted by relevance
| /external/vulkan-validation-layers/scripts/ |
| D | parse_test_results.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 28 # ./build/tests/vk_layer_validation_tests --devsim; done 29 # | python3 parse_test_results.py [--fail_on_skip] [--fail_on_unexpected] 31 # --fail_on_skip causes the script to exit with a non-zero exit code if a test 34 # --fail_on_unexpected causes the script to exit with a non-zero exit code if 116 if re.search(r'\[-*\]', line) is not None: 118 # Here we see a message that starts [----------] before another test 158 parser.add_argument('--fail_on_skip', action='store_true', help="Makes the script exit with a " 159 "non-zero exit code if a test didn't run on any device profile.") 160 parser.add_argument('--fail_on_unexpected', action='store_true', help="Makes the script exit " [all …]
|
| /external/vulkan-validation-layers/tests/ |
| D | vkrenderframework.cpp | 2 * Copyright (c) 2015-2019 The Khronos Group Inc. 3 * Copyright (c) 2015-2019 Valve Corporation 4 * Copyright (c) 2015-2019 LunarG, Inc. 5 * Copyright (c) 2015-2019 Google, Inc. 11 * http://www.apache.org/licenses/LICENSE-2.0 94 // Enable device profile as last layer on stack overriding devsim if there, or return if not availa… 183 // WARNING: The DevSim layer can override the properties that are tested here, making the result of 184 // this function dubious when DevSim is active. 193 // Some tests may need to be skipped if the devsim layer is in use. 211 " vertices[0] = vec2(-10.0, -10.0);\n" in DeviceCanDraw() [all …]
|
| D | vktestframework.cpp | 2 * Copyright (c) 2015-2019 The Khronos Group Inc. 3 * Copyright (c) 2015-2019 Valve Corporation 4 * Copyright (c) 2015-2019 LunarG, Inc. 10 * http://www.apache.org/licenses/LICENSE-2.0 18 * Author: Chia-I Wu <olvaffe@gmail.com> 79 // Command-line options 162 if (optionMatch("--strip-SPV", argv[i])) in InitArgs() 164 else if (optionMatch("--canonicalize-SPV", argv[i])) in InitArgs() 166 else if (optionMatch("--devsim", argv[i])) in InitArgs() 168 else if (optionMatch("--disable_uberlayer", argv[i])) in InitArgs() [all …]
|
| D | vklayertests_pipeline_shader.cpp | 2 * Copyright (c) 2015-2019 The Khronos Group Inc. 3 * Copyright (c) 2015-2019 Valve Corporation 4 * Copyright (c) 2015-2019 LunarG, Inc. 5 * Copyright (c) 2015-2019 Google, Inc. 11 * http://www.apache.org/licenses/LICENSE-2.0 13 * Author: Chia-I Wu <olvaffe@gmail.com> 46 // Set polygonMode to POINT while the non-solid fill mode feature is disabled. in TEST_F() 52 // Set polygonMode to LINE while the non-solid fill mode feature is disabled. in TEST_F() 62 … "VUID-VkPipelineRasterizationStateCreateInfo-polygonMode-01414"); in TEST_F() 68 …m_errorMonitor->SetDesiredFailureMsg(VK_DEBUG_REPORT_ERROR_BIT_EXT, "VUID-vkCmdBindPipeline-pipeli… in TEST_F() [all …]
|
| D | vklayertests_command.cpp | 2 * Copyright (c) 2015-2019 The Khronos Group Inc. 3 * Copyright (c) 2015-2019 Valve Corporation 4 * Copyright (c) 2015-2019 LunarG, Inc. 5 * Copyright (c) 2015-2019 Google, Inc. 11 * http://www.apache.org/licenses/LICENSE-2.0 13 * Author: Chia-I Wu <olvaffe@gmail.com> 33 …m_errorMonitor->SetDesiredFailureMsg(VK_DEBUG_REPORT_ERROR_BIT_EXT, "VUID-vkFreeCommandBuffers-pCo… in TEST_F() 41 pool_create_info.queueFamilyIndex = m_device->graphics_queue_node_index_; in TEST_F() 44 vkCreateCommandPool(m_device->device(), &pool_create_info, nullptr, &command_pool_one); in TEST_F() 46 vkCreateCommandPool(m_device->device(), &pool_create_info, nullptr, &command_pool_two); in TEST_F() [all …]
|
| /external/vulkan-validation-layers/ |
| D | .travis.yml | 2 # https://travis-ci.org 12 - env: CHECK_COMMIT_FORMAT=ON 13 - env: VULKAN_BUILD_TARGET=GN 16 - os: linux 18 env: VULKAN_BUILD_TARGET=ANDROID ANDROID_TARGET=android-26 ANDROID_ABI=armeabi-v7a 19 # Android 64-bit build. 20 - os: linux 22 env: VULKAN_BUILD_TARGET=ANDROID ANDROID_TARGET=android-26 ANDROID_ABI=arm64-v8a 24 - os: linux 28 - os: linux [all …]
|
| D | CONTRIBUTING.md | 5 The source code for The Vulkan-ValidationLayer components is sponsored by Khronos and LunarG. 6 * [Khronos Vulkan-ValidationLayers](https://github.com/KhronosGroup/Vulkan-ValidationLayers) 17 * Examine the [issues list](https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues) 19 * Alternatively, run the `vk_validation_stats.py` script (in the scripts directory) with the `-todo` 20 command line argument to see a list of as-yet unimplemented validation checks. 28 Please see the [section about Validation Layers](#special-considerations-for-validation-layers) 47 This will involve [forking the repository](https://help.github.com/articles/fork-a-repo/), 48 …mmits, and then [submitting a pull request](https://help.github.com/articles/using-pull-requests/). 49 * Please read and adhere to the style and process [guidelines ](#coding-conventions-and-formatting)… 58 …* The column limit is 132 (as opposed to the default value 80). The clang-format tool will handle … [all …]
|