|
| 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 |
|
| AImage (AImageView imageView) |
|
| AImage (AByteBuffer buffer, glm::uvec2 size, APixelFormat format) |
|
| AImage (glm::uvec2 size, APixelFormat format) |
|
AByteBuffer & | modifiableBuffer () 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 () |
|
| 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().
|
|
template<auto f>
class AFormattedImage< f >
- Examples
- examples/app/game_of_life/src/main.cpp.