| 46 | } |
| 47 | |
| 48 | std::shared_ptr<VisualProgram> ProgramFactory::CreateFromSources( |
| 49 | std::string const& vsSource, std::string const& psSource, |
| 50 | std::string const& gsSource) |
| 51 | { |
| 52 | return CreateFromNamedSources("vs", vsSource, "ps", psSource, "gs", gsSource); |
| 53 | } |
| 54 | |
| 55 | std::shared_ptr<ComputeProgram> ProgramFactory::CreateFromFile( |
| 56 | std::string const& csFile) |
no outgoing calls
no test coverage detected