Home
last modified time | relevance | path

Searched refs:specularTint (Results 1 – 12 of 12) sorted by relevance

/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/quick3d/
H A Dqquick3dprincipledmaterial.cpp409 float QQuick3DPrincipledMaterial::specularTint() const in specularTint() function in QQuick3DPrincipledMaterial
606 void QQuick3DPrincipledMaterial::setSpecularTint(float specularTint) in setSpecularTint() argument
608 specularTint = ensureNormalized(specularTint); in setSpecularTint()
609 if (qFuzzyCompare(m_specularTint, specularTint)) in setSpecularTint()
612 m_specularTint = specularTint; in setSpecularTint()
895 material->specularTint = colorToVec3(Qt::white); in updateSpatialNode()
914 material->specularTint = QVector3D(m_specularTint, m_specularTint, m_specularTint); in updateSpatialNode()
H A Dqquick3dprincipledmaterial_p.h67 … Q_PROPERTY(float specularTint READ specularTint WRITE setSpecularTint NOTIFY specularTintChanged)
129 float specularTint() const;
158 void setSpecularTint(float specularTint);
187 void specularTintChanged(float specularTint);
H A Dqquick3ddefaultmaterial_p.h68 … Q_PROPERTY(QColor specularTint READ specularTint WRITE setSpecularTint NOTIFY specularTintChanged)
117 QColor specularTint() const;
150 void setSpecularTint(QColor specularTint);
182 void specularTintChanged(QColor specularTint);
H A Dqquick3ddefaultmaterial.cpp407 QColor QQuick3DDefaultMaterial::specularTint() const in specularTint() function in QQuick3DDefaultMaterial
621 void QQuick3DDefaultMaterial::setSpecularTint(QColor specularTint) in setSpecularTint() argument
623 if (m_specularTint == specularTint) in setSpecularTint()
626 m_specularTint = specularTint; in setSpecularTint()
883 …material->specularTint = QVector3D(m_specularTint.redF(), m_specularTint.greenF(), m_specularTint.… in updateSpatialNode()
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/runtimerender/graphobjects/
H A Dqssgrenderdefaultmaterial_p.h112 QVector3D specularTint{ 1.0f, 1.0f, 1.0f };
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/imports/quick3d/
H A Dplugins.qmltypes237 Property { name: "specularTint"; type: "QColor" }
297 Parameter { name: "specularTint"; type: "QColor" }
412 Parameter { name: "specularTint"; type: "QColor" }
994 Property { name: "specularTint"; type: "float" }
1046 Parameter { name: "specularTint"; type: "float" }
1158 Parameter { name: "specularTint"; type: "float" }
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/runtimerender/
H A Dqssgrenderdefaultmaterialshadergenerator.cpp1715specularTint = (inMaterial.type == QSSGRenderGraphObject::Type::PrincipledMaterial) ? qMix3(QVecto… in setMaterialProperties() local
1716 … : inMaterial.specularTint; in setMaterialProperties()
1719 shader->m_materialSpecular.set(QVector4D(specularTint, inMaterial.ior)); in setMaterialProperties()
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed.shaders/src/appleseed/
H A Das_disney_material.osl83 string as_maya_attribute_name = "specularTint",
H A Das_toon.osl402 string as_maya_attribute_name = "specularTint",
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/imports/quick3d/designer/
H A DDefaultMaterialSection.qml149 backendValue: backendValues.specularTint
H A DPrincipledMaterialSection.qml383 backendValue: backendValues.specularTint
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/plugins/assetimporters/assimp/
H A Dassimpimporter.cpp894 aiColor3D specularTint; in generateMaterial() local
895 result = material->Get(AI_MATKEY_COLOR_SPECULAR, specularTint); in generateMaterial()