| 41 | #include <geode/tests/common.hpp> |
| 42 | |
| 43 | geode::RasterImage2D create_raster() |
| 44 | { |
| 45 | geode::RasterImage2D raster{ { 10, 10 } }; |
| 46 | for( const auto i : geode::LRange{ 100 } ) |
| 47 | { |
| 48 | raster.set_color( i, { i, i, i } ); |
| 49 | } |
| 50 | return raster; |
| 51 | } |
| 52 | |
| 53 | void create_texture( |
| 54 | geode::AttributeManager& attributes, geode::TextureStorage2D& storage ) |
no test coverage detected