/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Copyright 2011-2015 Danny Robson */ #ifndef __UTIL_IMAGE_HPP #define __UTIL_IMAGE_HPP #include "extent.hpp" #include "point.hpp" #include #include #include namespace util { namespace image { template struct buffer { typedef T value_type; //--------------------------------------------------------------------- buffer (util::extent2u); buffer (size_t w, size_t h); buffer (size_t w, size_t h, size_t s); buffer (size_t w, size_t h, size_t s, std::unique_ptr &&data); buffer (const buffer&) = delete; buffer (buffer &&) = default; //--------------------------------------------------------------------- /// allocate and return a buffer of the same dimensions. contents are undefined. template buffer alloc (void) const; /// allocate and return a buffer with the same contents template buffer clone (void) const; template buffer cast (void) const { return clone (); } buffer downsample (float factor) const; //--------------------------------------------------------------------- constexpr extent2u extent (void) const; constexpr vector2u stride (void) const; constexpr size_t size (void) const; // elements allocated constexpr bool is_packed (void) const; size_t w; size_t h; size_t s; //--------------------------------------------------------------------- constexpr size_t offset (point<2,size_t>) const; const T& operator[] (point<2,size_t>) const; T& operator[] (point<2,size_t>); const T& operator[] (size_t) const; T& operator[] (size_t); //--------------------------------------------------------------------- T* begin (void); T* end (void); T* data (void); const T* begin (void) const; const T* end (void) const; const T* data (void) const; const T* cbegin (void) const; const T* cend (void) const; private: std::unique_ptr m_data; }; } } #include "image.ipp" #endif