예제 #1
0
파일: bufferops.hpp 프로젝트: dhr/clip
inline f32 SumReduce(const ImageBuffer& a) {
  return a.fetchData().data().sum();
}
예제 #2
0
파일: bufferops.hpp 프로젝트: dhr/clip
inline f32 MaxReduce(const ImageBuffer& a) {
  return a.fetchData().data().max();
}