stripped down all pixwerx code to a minimal istic subset
This commit is contained in:
commit
612677c52d
398 changed files with 164811 additions and 0 deletions
36
src/lib/bitmap.hpp
Normal file
36
src/lib/bitmap.hpp
Normal file
|
@ -0,0 +1,36 @@
|
|||
#ifndef PARADISO_BITMAP_HPP
|
||||
#define PARADISO_BITMAP_HPP
|
||||
|
||||
#include "geometry.hpp"
|
||||
#include "globals.hpp"
|
||||
#include "rgba.hpp"
|
||||
|
||||
#include <type_traits>
|
||||
#include <vector>
|
||||
|
||||
namespace paradiso {
|
||||
struct Bitmap final {
|
||||
constexpr static Bitmap create(Size size) noexcept {
|
||||
return {.size = size, .data = std::vector<RGBA>{size.area()}};
|
||||
}
|
||||
|
||||
constexpr auto fill(const RGBA& color) noexcept {
|
||||
std::fill(data.begin(), data.end(), color);
|
||||
return *this;
|
||||
}
|
||||
|
||||
constexpr RGBA& pixel(std::integral auto x, std::integral auto y) {
|
||||
return data[y * size.width + x];
|
||||
}
|
||||
|
||||
constexpr const RGBA& pixel(std::integral auto x,
|
||||
std::integral auto y) const {
|
||||
return data[y * size.width + x];
|
||||
}
|
||||
|
||||
Size size{.width = 0, .height = 0};
|
||||
std::vector<RGBA> data{};
|
||||
};
|
||||
} // namespace paradiso
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue