mirror of https://github.com/qt/qtgraphs.git
27 lines
939 B
QML
27 lines
939 B
QML
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
import QtQuick3D
|
|
import QtQuick
|
|
|
|
CustomMaterial {
|
|
property real gradientPos: 0.0
|
|
property TextureInput custex: TextureInput {}
|
|
property int colorStyle
|
|
property color uColor
|
|
property bool usePoint
|
|
property bool transparency: false
|
|
property real rootScale
|
|
|
|
property real specularBrightness: 0.25
|
|
readonly property real shininess: (1.0 - specularBrightness) * 100
|
|
|
|
shadingMode: CustomMaterial.Shaded
|
|
sourceBlend: !transparency ? CustomMaterial.NoBlend : CustomMaterial.SrcAlpha
|
|
destinationBlend: !transparency ? CustomMaterial.NoBlend : CustomMaterial.OneMinusSrcAlpha
|
|
depthDrawMode: !transparency ? Material.OpaqueOnlyDepthDraw : Material.OpaquePrePassDepthDraw
|
|
|
|
vertexShader: "qrc:/shaders/scatterinstancingvert"
|
|
fragmentShader: "qrc:/shaders/scatterinstancingfrag"
|
|
}
|