FnUsdAbstractionLib 0.6.0
|
Interface to define material source code such as the surface shader method. More...
#include <ShaderSource.h>
Public Member Functions | |
MaterialSource (const SourceCodeGenerator &generator, const ShaderDescGroup &shaderGroup) | |
const SourceCodeGenerator & | sourceTypeGenerator () const |
Returns the SourceCodeGenerator that created this MaterialSource. | |
const usg::Token & | sourceType () const |
Returns the source target type of the generator. | |
const ShaderDescGroup & | shaderGroup () const |
Returns the ShaderDescGroup being converted into source code. | |
bool | modulatesOpacity () const |
virtual std::string | buildUniqueShaderName (const ShaderDesc *shaderDesc) const |
virtual std::string | buildUniqueInputName (const ShaderDesc *shaderDesc, const std::string &inputName) const |
virtual TokenValueMapSorted | getShaderPropertyValues (const ShaderDesc *shaderDesc) const =0 |
virtual MaterialConnectionsMap | getShaderConnections (const ShaderDesc *shaderDesc) const =0 |
Retrieve the list of valid input connections for this ShaderDesc in this material. | |
virtual ShaderSource * | createShaderSourceGenerator (const ShaderSchema *schema, std::stringstream &sourceOut) const =0 |
const ShaderDescConstPtrList & | shadersInTopologicalOrder () const |
const ShaderDescNameMap & | outputShaderNames () const |
Map of ShaderDescGroup shaders and their constructed(unique-ified) output shader names. | |
const std::string & | getOutputShaderName (const ShaderDesc *shaderDesc) const |
Retrieve the constructed(unique-ified) shader name for source code output. | |
virtual void | emitSourceCode (std::stringstream &source) const =0 |
Protected Attributes | |
const SourceCodeGenerator & | _generator |
const ShaderDescGroup & | _shaderGroup |
bool | _modulatesOpacity {false} |
Material has varying opacity values across its surface. | |
ShaderDescConstPtrList | _topologicalOrder |
List of shaders sorted in topological dependency order. | |
ShaderDescNameMap | _outputShaders |
Map of ShaderDescs and their output shader names. | |
Interface to define material source code such as the surface shader method.
|
inline |
This material has varying opacity values across its surface. Used if shaders need to declare this as a renderer hint.
|
virtual |
Build a unique name for this shader. Default implementation combines the name of the ShaderDesc's schema name with the current size of _outputShaders, thereby numbering them uniquely.
|
virtual |
Build a unique name for this input name. Default implementation combines the name of the ShaderDesc's unique output name with the input name.
|
pure virtual |
Retrieve the unique input property values to set in the output source. The names of the properties are usually created via buildUniqueInputName().
|
pure virtual |
Create (allocate) and return the ShaderSource generator to call when the given ShaderSchema needs to create custom shader code for this MaterialSource. The created ShaderSource is used for a single ShaderSchema instance and can store any temporary data it needs to prepare for the ShaderSchema::sourceCode() method to be called. Calling code takes ownership of returned allocation and typically will destroy it after the ShaderSchema's sourceCode() method has been run.
|
inline |
List of ShaderDesc pointers sorted into topological dependency order so shaders that depend on other shaders come after their dependencies.
|
pure virtual |
Generate source code text defining everything that the material will need to compile. This method will typically take the ShaderDescGroup and walk through all its ShaderSchemas converting them to source by calling createShaderSourceGenerator() for each.
©2025 The Foundry Visionmongers, Ltd. All Rights Reserved. |