Rename various things for more inclusive language
[platform/upstream/VK-GL-CTS.git] / external / vulkancts / modules / vulkan / pipeline / vktPipelineExecutablePropertiesTests.cpp
index 7f6e3f4..f661c70 100644 (file)
@@ -618,15 +618,6 @@ checkString(const char *string, size_t size)
                return false;
        }
 
-       // The rest of the string should be zero
-       for (; i < size; i++)
-       {
-               if (string[i] != 0)
-               {
-                       return false;
-               }
-       }
-
        return true;
 }
 
@@ -1130,7 +1121,7 @@ void GraphicsExecutablePropertiesTest::initPrograms (SourceCollections& programC
                        break;
 
                case VK_SHADER_STAGE_GEOMETRY_BIT:
-                       programCollection.glslSources.add("dummy_geo") << glu::GeometrySource(
+                       programCollection.glslSources.add("unused_geo") << glu::GeometrySource(
                                                "#version 450 \n"
                                                "layout(triangles) in;\n"
                                                "layout(triangle_strip, max_vertices = 3) out;\n"
@@ -1265,7 +1256,7 @@ GraphicsExecutablePropertiesTestInstance::GraphicsExecutablePropertiesTestInstan
                                }
                                else
                                {
-                                       m_pipelineBuilder.bindShaderStage(VK_SHADER_STAGE_GEOMETRY_BIT, "dummy_geo", "main");
+                                       m_pipelineBuilder.bindShaderStage(VK_SHADER_STAGE_GEOMETRY_BIT, "unused_geo", "main");
                                }
                                break;
                        case VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT: