コード例 #1
0
ファイル: png.cpp プロジェクト: jping2/zixu_research
RGBAPixel const * PNG::operator()(size_t x, size_t y) const 
{ 
_clamp_xy(x, y); 
return &(_pixel(x,y)); } 
コード例 #2
0
ファイル: easypng.cpp プロジェクト: axzhong3/mazeRouter
RGBAPixel const * PNG::operator()(int x, int y) const
{
	_clamp_xy(x, y);
	return &(_pixel(x,y));
}