ultimatepp/upptst/PdbTests3/main.cpp
cxl 55d8c66562 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@14298 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-04-13 08:25:12 +00:00

24 lines
384 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);
Image h = CtrlImg::exclamation();
ImageBuffer ib(h);
Fn(Red(), ib);
Image img = CtrlImg::exclamation();
Value v = img;
LOG("Here");
}