mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
23 lines
370 B
C++
23 lines
370 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
void Fn(Color c, ImageBuffer& ib)
|
|
{
|
|
DUMP(c);
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
Tuple<int, Color> c;
|
|
|
|
c.b = Cyan();
|
|
|
|
// ImageBuffer ib = Rescale(CtrlImg::exclamation(), 500, 500);
|
|
ImageBuffer ib = CtrlImg::exclamation();
|
|
Fn(Red(), ib);
|
|
Image img = CtrlImg::exclamation();
|
|
Value v = img;
|
|
|
|
LOG("Here");
|
|
}
|