AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
AFormattedImage< f > Class Template Reference

Same as AImage but all universal AColor methods replaced with concrete specific AFormattedColor type thus can be used by performance critical code. More...

#include <AUI/Image/AImage.h>

Public Types#

using Color = AFormattedColor<f>
 
- Public Types inherited from AImageView
using Color = AColor
 

Public Member Functions#

 AFormattedImage (AByteBuffer data, glm::uvec2 size)
 
 AFormattedImage (glm::uvec2 size)
 
constexpr int format () const noexcept
 
const Color & get (glm::uvec2 position) const noexcept
 
void set (glm::uvec2 position, Color color) noexcept
 
void setWithPositionCheck (glm::uvec2 position, Color color) noexcept
 
const Color * begin () const noexcept
 
const Color * end () const noexcept
 
Color * begin () noexcept
 
Color * end () noexcept
 
void fill (Color color)
 
Color averageColor () const noexcept
 
- Public Member Functions inherited from AImage
 AImage (AImageView imageView)
 
 AImage (AByteBuffer buffer, glm::uvec2 size, APixelFormat format)
 
 AImage (glm::uvec2 size, APixelFormat format)
 
AByteBuffermodifiableBuffer () noexcept
 
template<AImageVisitor Visitor>
auto visit (Visitor &&visitor)
 
void set (glm::uvec2 position, Color c) noexcept
 
void insert (glm::uvec2 position, AImageView image)
 
void fill (Color color)
 
void mirrorVertically ()
 
- Public Member Functions inherited from AImageView
 AImageView (AByteBufferView data, glm::uvec2 size, APixelFormat format)
 
 AImageView (const AImage &v)
 
AByteBufferView buffer () const noexcept
 
glm::uvec2 size () const noexcept
 
unsigned width () const noexcept
 
unsigned height () const noexcept
 
APixelFormat format () const noexcept
 
std::uint8_t bytesPerPixel () const noexcept
 
Color get (glm::uvec2 position) const noexcept
 Retrieves pixel color data.
 
template<AImageViewVisitor Visitor>
auto visit (Visitor &&visitor) const
 
AImage cropped (glm::uvec2 position, glm::uvec2 size) const
 Crops the image, creating new image with the same format.
 
Color averageColor () const noexcept
 
const char & rawDataAt (glm::uvec2 position) const noexcept
 Retrieves reference to raw data at specified position.
 
AImage mirroredVertically () const
 
AImage resizedLinearDownscale (glm::uvec2 newSize) const
 
AImage convert (APixelFormat format) const
 
const char * data () const noexcept
 Shortcut to buffer().data().
 

Static Public Attributes#

static constexpr auto FORMAT = f
 

Additional Inherited Members#

- Static Public Member Functions inherited from AImage
static _< AImagefromUrl (const AUrl &url)
 
static _< AImagefromFile (const APath &path)
 
static _< AImagefromBuffer (AByteBufferView buffer)
 
- Protected Attributes inherited from AImageView
AByteBufferView mData
 
glm::uvec2 mSize
 
APixelFormat mFormat = APixelFormat::UNKNOWN
 

Detailed Description#

template<auto f>
class AFormattedImage< f >
Examples
examples/app/game_of_life/src/main.cpp.