| 170 | StandardSurfaceUniforms, StandardSurfaceDefaultProperties, StandardSurfaceDefaultTextures); |
| 171 | |
| 172 | MaterialBase::MaterialBase( |
| 173 | const string& name, MaterialShaderPtr pShader, MaterialDefinitionPtr pDef) : |
| 174 | _textures(pDef->defaults().textureNames), |
| 175 | _pDef(pDef), |
| 176 | _pShader(pShader), |
| 177 | _uniformBuffer(pDef->defaults().propertyDefinitions, pDef->defaults().properties), |
| 178 | _name(name) |
| 179 | |
| 180 | { |
| 181 | } |
| 182 | |
| 183 | void MaterialBase::updateBuiltInMaterial(MaterialBase& mtl) |
| 184 | { |
nothing calls this directly
no outgoing calls
no test coverage detected