Home
last modified time | relevance | path

Searched refs:textureScale (Results 1 – 25 of 161) sorted by relevance

1234567

/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/quick/scenegraph/shaders/
H A Doutlinedtext_core.vert13 uniform vec2 textureScale;
19 sampleCoord = tCoord * textureScale;
20 sCoordUp = (tCoord - vec2(0.0, -1.0)) * textureScale;
21 sCoordDown = (tCoord - vec2(0.0, 1.0)) * textureScale;
22 sCoordLeft = (tCoord - vec2(-1.0, 0.0)) * textureScale;
23 sCoordRight = (tCoord - vec2(1.0, 0.0)) * textureScale;
H A Doutlinedtext.vert2 uniform highp vec2 textureScale;
17 sampleCoord = tCoord * textureScale;
18 sCoordUp = (tCoord - vec2(0.0, -1.0)) * textureScale;
19 sCoordDown = (tCoord - vec2(0.0, 1.0)) * textureScale;
20 sCoordLeft = (tCoord - vec2(-1.0, 0.0)) * textureScale;
21 sCoordRight = (tCoord - vec2(1.0, 0.0)) * textureScale;
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/quick/scenegraph/shaders/
H A Doutlinedtext_core.vert13 uniform vec2 textureScale;
19 sampleCoord = tCoord * textureScale;
20 sCoordUp = (tCoord - vec2(0.0, -1.0)) * textureScale;
21 sCoordDown = (tCoord - vec2(0.0, 1.0)) * textureScale;
22 sCoordLeft = (tCoord - vec2(-1.0, 0.0)) * textureScale;
23 sCoordRight = (tCoord - vec2(1.0, 0.0)) * textureScale;
H A Doutlinedtext.vert2 uniform highp vec2 textureScale;
17 sampleCoord = tCoord * textureScale;
18 sCoordUp = (tCoord - vec2(0.0, -1.0)) * textureScale;
19 sCoordDown = (tCoord - vec2(0.0, 1.0)) * textureScale;
20 sCoordLeft = (tCoord - vec2(-1.0, 0.0)) * textureScale;
21 sCoordRight = (tCoord - vec2(1.0, 0.0)) * textureScale;
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/plugins/scenegraph/d3d12/shaders/
H A Dtextmask.hlsl10 float2 textureScale;
31 result.coord = input.coord * textureScale;
62 result.coord = input.coord * textureScale;
63 result.shiftedCoord = (input.coord - shift) * textureScale;
88 result.coord = input.coord * textureScale;
89 result.coordUp = (input.coord - float2(0.0, -1.0)) * textureScale;
90 result.coordDown = (input.coord - float2(0.0, 1.0)) * textureScale;
91 result.coordLeft = (input.coord - float2(-1.0, 0.0)) * textureScale;
92 result.coordRight = (input.coord - float2(1.0, 0.0)) * textureScale;
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/plugins/scenegraph/d3d12/shaders/
H A Dtextmask.hlsl10 float2 textureScale;
31 result.coord = input.coord * textureScale;
62 result.coord = input.coord * textureScale;
63 result.shiftedCoord = (input.coord - shift) * textureScale;
88 result.coord = input.coord * textureScale;
89 result.coordUp = (input.coord - float2(0.0, -1.0)) * textureScale;
90 result.coordDown = (input.coord - float2(0.0, 1.0)) * textureScale;
91 result.coordLeft = (input.coord - float2(-1.0, 0.0)) * textureScale;
92 result.coordRight = (input.coord - float2(1.0, 0.0)) * textureScale;
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/quick/scenegraph/shaders_ng/
H A Doutlinedtext.vert16 vec2 textureScale;
27 sampleCoord = tCoord * ubuf.textureScale;
28 sCoordUp = (tCoord - vec2(0.0, -1.0)) * ubuf.textureScale;
29 sCoordDown = (tCoord - vec2(0.0, 1.0)) * ubuf.textureScale;
30 sCoordLeft = (tCoord - vec2(-1.0, 0.0)) * ubuf.textureScale;
31 sCoordRight = (tCoord - vec2(1.0, 0.0)) * ubuf.textureScale;
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/quick/scenegraph/shaders_ng/
H A Doutlinedtext.vert16 vec2 textureScale;
27 sampleCoord = tCoord * ubuf.textureScale;
28 sCoordUp = (tCoord - vec2(0.0, -1.0)) * ubuf.textureScale;
29 sCoordDown = (tCoord - vec2(0.0, 1.0)) * ubuf.textureScale;
30 sCoordLeft = (tCoord - vec2(-1.0, 0.0)) * ubuf.textureScale;
31 sCoordRight = (tCoord - vec2(1.0, 0.0)) * ubuf.textureScale;
/dports/graphics/qgis/qgis-3.22.3/external/qt3dextra-headers/Qt3DExtras/
H A Dqdiffusespecularmapmaterial.h65 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
75 float textureScale() const;
82 void setTextureScale(float textureScale);
89 void textureScaleChanged(float textureScale);
H A Dqdiffusemapmaterial.h66 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
76 float textureScale() const;
83 void setTextureScale(float textureScale);
90 void textureScaleChanged(float textureScale);
H A Dqdiffusespecularmaterial.h61 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
73 float textureScale() const;
82 void setTextureScale(float textureScale);
91 void textureScaleChanged(float textureScale);
H A Dqmetalroughmaterial.h65 …Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged R…
76 float textureScale() const;
84 void setTextureScale(float textureScale);
92 void textureScaleChanged(float textureScale);
H A Dqnormaldiffusemapmaterial.h67 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
78 float textureScale() const;
86 void setTextureScale(float textureScale);
94 void textureScaleChanged(float textureScale);
H A Dqnormaldiffusespecularmapmaterial.h61 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
72 float textureScale() const;
80 void setTextureScale(float textureScale);
88 void textureScaleChanged(float textureScale);
/dports/graphics/qgis-ltr/qgis-3.16.16/external/qt3dextra-headers/Qt3DExtras/
H A Dqdiffusemapmaterial.h66 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
76 float textureScale() const;
83 void setTextureScale(float textureScale);
90 void textureScaleChanged(float textureScale);
H A Dqdiffusespecularmapmaterial.h65 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
75 float textureScale() const;
82 void setTextureScale(float textureScale);
89 void textureScaleChanged(float textureScale);
H A Dqdiffusespecularmaterial.h61 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
73 float textureScale() const;
82 void setTextureScale(float textureScale);
91 void textureScaleChanged(float textureScale);
H A Dqnormaldiffusemapmaterial.h67 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
78 float textureScale() const;
86 void setTextureScale(float textureScale);
94 void textureScaleChanged(float textureScale);
H A Dqmetalroughmaterial.h65 …Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged R…
76 float textureScale() const;
84 void setTextureScale(float textureScale);
92 void textureScaleChanged(float textureScale);
H A Dqnormaldiffusespecularmapmaterial.h61 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
72 float textureScale() const;
80 void setTextureScale(float textureScale);
88 void textureScaleChanged(float textureScale);
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/extras/defaults/
H A Dqdiffusemapmaterial.h66 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
76 float textureScale() const;
83 void setTextureScale(float textureScale);
90 void textureScaleChanged(float textureScale);
H A Dqdiffusespecularmapmaterial.h65 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
75 float textureScale() const;
82 void setTextureScale(float textureScale);
89 void textureScaleChanged(float textureScale);
H A Dqmetalroughmaterial.h65 …Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged R…
76 float textureScale() const;
84 void setTextureScale(float textureScale);
92 void textureScaleChanged(float textureScale);
H A Dqnormaldiffusemapmaterial.h67 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
78 float textureScale() const;
86 void setTextureScale(float textureScale);
94 void textureScaleChanged(float textureScale);
H A Dqnormaldiffusespecularmapmaterial.h61 … Q_PROPERTY(float textureScale READ textureScale WRITE setTextureScale NOTIFY textureScaleChanged)
72 float textureScale() const;
80 void setTextureScale(float textureScale);
88 void textureScaleChanged(float textureScale);

1234567