Home
last modified time | relevance | path

Searched refs:vsSourceStr (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/vulkan-validation-layers/tests/
H A Dvklayertests_pipeline_shader.cpp3797 std::string vsSourceStr = "#version 450\n\n"; in TEST_F() local
3801vsSourceStr += "layout(location=" + std::to_string(location) + ") out vec4 v" + std::to_string(i) … in TEST_F()
3807vsSourceStr += "layout(location=" + std::to_string(location) + ") out float" + " vn;\n"; in TEST_F()
3809vsSourceStr += "layout(location=" + std::to_string(location) + ") out vec" + std::to_string(remain… in TEST_F()
3813 vsSourceStr += in TEST_F()
3826 VkShaderObj vs(m_device, vsSourceStr.c_str(), VK_SHADER_STAGE_VERTEX_BIT, this); in TEST_F()
/aosp_15_r20/external/angle/src/libANGLE/renderer/gl/
H A DBlitGL.cpp1542 std::string vsSourceStr = vsSourceStream.str(); in getBlitProgram() local
1543 const char *vsSourceCStr = vsSourceStr.c_str(); in getBlitProgram()