24 property unsigned int Near {
26 return _multipleSampling->GetNear();
28 void set(
unsigned int x) {
29 _multipleSampling->SetNear(x);
33 property unsigned int Middle {
35 return _multipleSampling->GetMiddle();
37 void set(
unsigned int x) {
38 _multipleSampling->SetMiddle(x);
42 property unsigned int Far {
44 return _multipleSampling->GetFar();
46 void set(
unsigned int x) {
47 _multipleSampling->SetFar(x);
53 return _multipleSampling;
58 if (System::Object::ReferenceEquals(pComp1, pComp2))
61 if (System::Object::ReferenceEquals(pComp1,
nullptr) ||
62 System::Object::ReferenceEquals(pComp2,
nullptr)) {
65 return pComp1->Near == pComp2->Near
66 && pComp1->Middle == pComp2->Middle
67 && pComp1->Far == pComp2->Far;
71 return !(pComp1 == pComp2);