MCPcopy Create free account
hub / github.com/ImageEngine/cortex / Shader

Method Shader

src/IECoreGL/Shader.cpp:391–394  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

389IE_CORE_DEFINERUNTIMETYPED( Shader );
390
391Shader::Shader( const std::string &vertexSource, const std::string &fragmentSource )
392 : m_implementation( new Implementation( vertexSource, "", fragmentSource ) )
393{
394}
395
396Shader::Shader( const std::string &vertexSource, const std::string &geometrySource, const std::string &fragmentSource )
397 : m_implementation( new Implementation( vertexSource, geometrySource, fragmentSource ) )

Calls

no outgoing calls