ultimatepp/benchmarks/DrawGLBench/main.cpp
cxl 69c334a38e .benchmarks
git-svn-id: svn://ultimatepp.org/upp/trunk@12461 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-11-05 08:09:26 +00:00

166 lines
4.7 KiB
C++

#include <CtrlLib/CtrlLib.h>
#include <GLDraw/GLDraw.h>
#include <Painter/Painter.h>
#include <GLCtrl/GLCtrl.h>
using namespace Upp;
void GeomTest121(Draw& w, Size sz)
{
w.DrawRect(sz, White());
for(int y = 0; y < sz.cy; y += 20)
w.DrawText(0, y, "Test text");
}
void GeomTest5(Draw& w, Size sz)
{
w.DrawRect(sz, White());
for(int angle = 0; angle < 3600; angle += 300)
w.DrawText(sz.cx / 2, sz.cy / 2, angle, "Test text");
}
void GeomTest1(Draw& w, Size sz)
{
w.DrawRect(sz, White());
}
void GeomTest11(Draw& w, Size sz)
{
w.DrawRect(sz, White());
w.DrawEllipse(0, 0, sz.cx, sz.cy, Blue());
}
void GeomTest(Draw& w, Size sz)
{
w.DrawRect(sz, White());
static const int d[] = { PEN_NULL, PEN_SOLID, PEN_DASH, PEN_DOT, PEN_DASHDOT, PEN_DASHDOTDOT, 1, 2, 3, 10 };
for(int i = 0; i < __countof(d); i++) {
w.DrawLine(10, i * 10, 200, i * 10, d[i], Red());
w.DrawLine(300, i * 10, 400, i * 10 + 15, d[i], Red());
w.DrawLine(450 + i * 10, 10, 450 + i * 10, 200, d[i], Red());
}
}
void GeomTest2(Draw& w, Size sz)
{
w.DrawRect(sz, White());
static const int d[] = { PEN_NULL, PEN_SOLID, PEN_DASH, PEN_DOT, PEN_DASHDOT, PEN_DASHDOTDOT, 1, 2, 3, 10 };
for(int i = 0; i < __countof(d); i++) {
w.DrawLine(10, i * 10, 200, i * 10, d[i], Red());
w.DrawLine(300, i * 10, 400, i * 10 + 15, d[i], Red());
w.DrawLine(450 + i * 10, 10, 450 + i * 10, 200, d[i], Red());
}
Point points[12][2][4];
int subpolygon_counts[12][2];
int disjunct_counts[12];
Point lpoints[12][5];
int lcounts[12][2];
Pointf center(300, 300);
static const double out_delta = 2 * M_PI / 24;
static const double in_delta = 2 * M_PI / 48;
for(int i = 0; i < 12; i++) {
double angle = i * 2 * M_PI / 12;
points[i][0][0] = Polar(center, 200, angle);
points[i][0][1] = Polar(center, 120, angle - out_delta);
points[i][0][2] = Polar(center, 40, angle);
points[i][0][3] = Polar(center, 120, angle + out_delta);
points[i][1][0] = Polar(center, 160, angle);
points[i][1][1] = Polar(center, 120, angle + in_delta);
points[i][1][2] = Polar(center, 80, angle);
points[i][1][3] = Polar(center, 120, angle - in_delta);
subpolygon_counts[i][0] = 4;
subpolygon_counts[i][1] = 4;
disjunct_counts[i] = subpolygon_counts[i][0] + subpolygon_counts[i][1];
lpoints[i][0] = Polar(center, 260, angle + in_delta);
lpoints[i][1] = Polar(center, 230, angle);
lpoints[i][2] = Polar(center, 260, angle - in_delta);
lcounts[i][0] = 3;
lpoints[i][3] = Polar(center, 280, angle + in_delta);
lpoints[i][4] = Polar(center, 280, angle - in_delta);
lcounts[i][1] = 2;
}
w.DrawPolyPolyPolygon(points[0][0], sizeof(points) / sizeof(Point),
subpolygon_counts[0], sizeof(subpolygon_counts) / sizeof(int),
disjunct_counts, sizeof(disjunct_counts) / sizeof(int),
LtBlue(), 4, LtRed(), I64(0xF0F0F0F00F0F0F0F));
w.DrawPolyPolyline(lpoints[0], sizeof(lpoints) / sizeof(Point),
lcounts[0], sizeof(lcounts) / sizeof(int),
4, Color(0, 192, 0));
w.DrawRect(sz.cx - 200, sz.cy - 100, 200, 100, Yellow());
w.DrawEllipse(sz.cx - 200, sz.cy - 100, 200, 100, Gray(), 3, LtBlue());
w.DrawEllipse(0, sz.cy - 100, 150, 100, Gray(), PEN_DASHDOTDOT, LtBlue());
{
Pointf center(sz.cx - 320, 300);
for(int i = 0; i < 13; i++) {
double angle = (i - 3) * M_PI / 6;
Pointf box_center = Polar(center, 250, angle);
Size radius(60, 20);
Rect box(Point(box_center), Size(1, 1));
box.Inflate(radius);
w.DrawRect(box, Yellow());
for(int j = 0; j < 12; j++) {
double ang2 = j * M_PI / 6;
Sizef hand = Polar(Pointf(0, 0), 1, ang2);
Point h1(box_center + Sizef(radius) * hand);
Point h2(box_center + Sizef(radius) * 0.7 * hand);
w.DrawLine(h1, h2, 1, LtBlue());
}
Sizef hand = Polar(Pointf(0, 0), 1, angle);
w.DrawArc(box, Point(box_center + radius * hand), box.TopCenter(), PEN_DASHDOT, LtRed());
}
}
}
Size sz(1000, 1000);
const int N = 1000;
struct Test : GLCtrl {
virtual void GLPaint() {
GLTextureDraw tw(sz, 4);
{
DrawGL gl(sz);
GeomTest(gl, sz);
}
for(int i = 0; i < N; i++) {
DrawGL gl(sz);
{
RTIMING("OpenGL");
GeomTest(gl, sz);
// glFinish();
}
}
/*
for(int i = 0; i < N; i++) {
ImagePainter tw(sz);
RTIMING("Painter");
GeomTest(tw, sz);
}
for(int i = 0; i < N; i++) {
ImagePainter tw(sz);
tw.Co();
RTIMING("Painter MT");
GeomTest(tw, sz);
tw.Finish();
}
*/
for(int i = 0; i < N; i++) {
ImageDraw tw(sz);
RTIMING("GDI");
GeomTest(tw, sz);
}
PostCallback([=] { GetParent()->Close(); });
}
};
GUI_APP_MAIN
{
Test h;
h.MSAA(4);
TopWindow win;
win.Add(h.SizePos());
win.Run();
}