mirror of https://github.com/CGAL/cgal
Fix test psp
This commit is contained in:
parent
df50c4cd0a
commit
4c9cb65427
|
|
@ -54,7 +54,7 @@ struct GetBlueMap{
|
||||||
};
|
};
|
||||||
unsigned short get(const GetBlueMap&, const PointWithColor& p)
|
unsigned short get(const GetBlueMap&, const PointWithColor& p)
|
||||||
{
|
{
|
||||||
return p.second[3];
|
return p.second[2];
|
||||||
}
|
}
|
||||||
|
|
||||||
struct GetAlphaMap{
|
struct GetAlphaMap{
|
||||||
|
|
@ -65,7 +65,7 @@ struct GetAlphaMap{
|
||||||
};
|
};
|
||||||
unsigned short get(const GetAlphaMap&, const PointWithColor& p)
|
unsigned short get(const GetAlphaMap&, const PointWithColor& p)
|
||||||
{
|
{
|
||||||
return p.second[4];
|
return p.second[3];
|
||||||
}
|
}
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue