Lines Matching refs:tesSourceStr
22176 std::string tesSourceStr = in TEST_F() local
22196 …VkShaderObj tes(m_device, tesSourceStr.c_str(), VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT, this); in TEST_F()
22270 std::string tesSourceStr = in TEST_F() local
22280 …tesSourceStr += "layout(location=" + std::to_string(inLocation) + ") in vec4 v" + std::to_string(i… in TEST_F()
22286 … tesSourceStr += "layout(location=" + std::to_string(inLocation) + ") in float" + " vnIn[];\n"; in TEST_F()
22288 tesSourceStr += in TEST_F()
22293 …tesSourceStr += "layout(location=" + std::to_string(inLocation) + ") in vec4 exceedLimitIn[];\n\n"; in TEST_F()
22299 …tesSourceStr += "layout(location=" + std::to_string(outLocation) + ") out vec4 v" + std::to_string… in TEST_F()
22305 … tesSourceStr += "layout(location=" + std::to_string(outLocation) + ") out float" + " vnOut;\n"; in TEST_F()
22307 tesSourceStr += in TEST_F()
22312 … tesSourceStr += "layout(location=" + std::to_string(outLocation) + ") out vec4 exceedLimitOut;\n"; in TEST_F()
22314 tesSourceStr += in TEST_F()
22331 …VkShaderObj tes(m_device, tesSourceStr.c_str(), VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT, this); in TEST_F()