Lines Matching refs:gsSourceStr
4063 std::string gsSourceStr = in TEST_F() local
4074 …gsSourceStr += "layout(location=" + std::to_string(inLocation) + ") in vec4 v" + std::to_string(i)… in TEST_F()
4080 … gsSourceStr += "layout(location=" + std::to_string(inLocation) + ") in float" + " vnIn[];\n"; in TEST_F()
4082 gsSourceStr += in TEST_F()
4093 …gsSourceStr += "layout(location=" + std::to_string(outLocation) + ") out vec4 v" + std::to_string(… in TEST_F()
4099 … gsSourceStr += "layout(location=" + std::to_string(outLocation) + ") out float" + " vnOut;\n"; in TEST_F()
4101 gsSourceStr += in TEST_F()
4109 gsSourceStr += "layout(triangle_strip, max_vertices = " + std::to_string(max_vertices) + in TEST_F()
4115 VkShaderObj gs(m_device, gsSourceStr.c_str(), VK_SHADER_STAGE_GEOMETRY_BIT, this); in TEST_F()
4200 std::string gsSourceStr = R"( in TEST_F() local
4208 gsSourceStr += "OpExecutionMode %main Invocations " + in TEST_F()
4214 gsSourceStr += R"( in TEST_F()
4219 gsSourceStr += R"( in TEST_F()
4228 VkShaderObj gs(m_device, gsSourceStr, VK_SHADER_STAGE_GEOMETRY_BIT, this); in TEST_F()