Home
last modified time | relevance | path

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

/aosp_15_r20/external/angle/samples/multiple_draw_buffers/
H A DMultipleDrawBuffers.cpp52 std::stringstream vsStream; in initialize() local
53 vsStream << angle::GetExecutableDirectory() << "/multiple_draw_buffers_vs.glsl"; in initialize()
61 mMRTProgram = CompileProgramFromFiles(vsStream.str(), fsStream.str()); in initialize()
67 mCopyProgram = CompileProgramFromFiles(vsStream.str(), copyFsStream.str()); in initialize()
/aosp_15_r20/external/angle/src/tests/gl_tests/
H A DGeometryShaderTest.cpp1963 std::stringstream vsStream; in TEST_P() local
1964 vsStream << R"(#version 310 es in TEST_P()
1971 vsStream << "out vec4 v" << varyingIndex << ";\n"; in TEST_P()
1974 vsStream << R"( in TEST_P()
1982 vsStream << " v" << varyingIndex << " = uniOne * " << varyingIndex << ".0;\n"; in TEST_P()
1985 vsStream << "}"; in TEST_P()
2051 const std::string vs = vsStream.str(); in TEST_P()