OSDN Git Service

hk
[psychlops/cpp_document.git] / Psychlops.manual / sample_cpp_file / 3�� / 3.1.1_Image�̐錾2.cpp
1 #include <psychlops.h>
2 using namespace Psychlops;
3
4 Psychlops::Image Noise1;
5 long Width=200, Height=100;
6
7 void psychlops_main() {
8
9         Canvas sampleA(Canvas::fullscreen);
10         Noise1.set(Width,Height,Image::RGBA);
11         sampleA.flip();
12         while(!Input::get(Keyboard::spc));
13 }