mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
23 lines
391 B
C++
23 lines
391 B
C++
|
|
// Utils includes
|
|
#include <utils/RgbImage.h>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Constructing image" << std::endl;
|
|
RgbImage image(64, 64, RgbColor::BLACK);
|
|
|
|
std::cout << "Writing image" << std::endl;
|
|
for (unsigned y=0; y<64; ++y)
|
|
{
|
|
for (unsigned x=0; x<64; ++x)
|
|
{
|
|
image(x,y) = RgbColor::RED;
|
|
}
|
|
}
|
|
|
|
std::cout << "Finished (destruction will be performed)" << std::endl;
|
|
|
|
return 0;
|
|
}
|