10 writes to g
PresentationCore (10)
System\Windows\Media\Color.cs (10)
42
c1.scRgbColor.
g
= 0.0f;
125
c1.scRgbColor.
g
= sRgbToScRgb(c1.sRgbColor.g);
142
c1.scRgbColor.
g
= g;
174
c1.scRgbColor.
g
= sRgbToScRgb(g);
359
scRgbColor.
g
= (scRgbColor.g < 0) ? 0 : (scRgbColor.g > 1.0f) ? 1.0f : scRgbColor.g;
467
c1.scRgbColor.
g
= sRgbToScRgb(c1.sRgbColor.g);
584
c1.scRgbColor.
g
= sRgbToScRgb(c1.sRgbColor.g);
844
scRgbColor.
g
= sRgbToScRgb(value);
947
scRgbColor.
g
= value;
1089
this.scRgbColor.
g
= sRgbToScRgb((byte)((255.0f * scRGBValue[1]) + 0.5f));
19 references to g
PresentationCore (19)
System\Windows\Media\Color.cs (19)
96
c1.sRgbColor.g = ScRgbTosRgb(c1.scRgbColor.
g
);
156
c1.sRgbColor.g = ScRgbTosRgb(c1.scRgbColor.
g
);
179
c1.sRgbColor.g = ScRgbTosRgb(c1.scRgbColor.
g
);
281
separator, scRgbColor.a, scRgbColor.r, scRgbColor.
g
, scRgbColor.b);
339
result = result && FloatUtil.AreClose(scRgbColor.
g
, color.scRgbColor.
g
);
359
scRgbColor.g = (scRgbColor.
g
< 0) ? 0 : (scRgbColor.
g
> 1.0f) ? 1.0f : scRgbColor.
g
;
364
sRgbColor.g = ScRgbTosRgb(scRgbColor.
g
);
404
color1.scRgbColor.
g
+ color2.scRgbColor.
g
,
516
color1.scRgbColor.
g
- color2.scRgbColor.
g
,
627
Color c1 = FromScRgb(color.scRgbColor.a * coefficient, color.scRgbColor.r * coefficient, color.scRgbColor.
g
* coefficient, color.scRgbColor.b * coefficient);
704
if (color1.scRgbColor.
g
!= color2.scRgbColor.
g
)
940
return scRgbColor.
g
;
1135
return a.GetHashCode() ^ r.GetHashCode() ^
g
.GetHashCode() ^ b.GetHashCode();