-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsample-bench.c
281 lines (244 loc) · 7.43 KB
/
sample-bench.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*
This sample is used to benchmark, it intentionally draws lots of primitives
with interleaved textures or pipelines, to measure then gains of the batch optimizer.
In my latest tests on my computer (edubart) with batch optimizer active
there is a 2.2x in FPS gains.
*/
// Uncomment this to disable the batch optimizer.
// #define SGP_BATCH_OPTIMIZER_DEPTH 0
#define SOKOL_IMPL
#include "sokol_gfx.h"
#include "sokol_gp.h"
#include "sokol_app.h"
#include "sokol_glue.h"
#include "sokol_time.h"
#include "sokol_log.h"
#include <stdio.h>
#include <stdlib.h>
static sg_image image1;
static sg_image image2;
static float image_ratio;
static const int count = 48;
static const int rect_count = 4;
static void bench_repeated_textured(void) {
sgp_reset_color();
sgp_set_image(0, image1);
for (int y=0;y<count;++y) {
for (int x=0;x<count;++x) {
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
}
}
sgp_reset_image(0);
}
static void bench_multiple_textured(void) {
sgp_reset_color();
for (int y=0;y<count;++y) {
for (int x=0;x<count;++x) {
sgp_set_image(0, x % 2 == 0 ? image1 : image2);
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
}
}
sgp_reset_image(0);
}
static void bench_colored_textured(void) {
sgp_reset_color();
sgp_set_image(0, image1);
for (int y=0;y<count;++y) {
for (int x=0;x<count;++x) {
if (x % 3 == 0) {
sgp_set_color(1.0f, 0, 0, 1.0f);
} else if (x % 3 == 1) {
sgp_set_color(0, 1.0f, 0, 1.0f);
} else {
sgp_set_color(0, 0, 1.0f, 1.0f);
}
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
}
}
sgp_reset_image(0);
}
static void bench_repeated_filled(void) {
sgp_reset_color();
for (int y=0;y<count;++y) {
for (int x=0;x<count;++x) {
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
}
}
}
static void bench_colored_filled(void) {
sgp_reset_color();
for (int y=0;y<count;++y) {
for (int x=0;x<count;++x) {
if (x % 3 == 0) {
sgp_set_color(1.0f, 0, 0, 1.0f);
} else if (x % 3 == 1) {
sgp_set_color(0, 1.0f, 0, 1.0f);
} else {
sgp_set_color(0, 0, 1.0f, 1.0f);
}
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
}
}
}
static void bench_mixed(void) {
for (int diagonal = 0; diagonal < 2*count - 1; ++diagonal) {
int advance = _sg_max(diagonal - count + 1, 0);
for (int y = diagonal - advance, x = advance; y >= 0 && x < count; --y, ++x) {
if (x % 3 == 0) {
sgp_set_color(1.0f, 0, 0, 1.0f);
} else if (x % 3 == 1) {
sgp_set_color(0, 1.0f, 0, 1.0f);
} else {
sgp_set_color(0, 0, 1.0f, 1.0f);
}
if ((x+y) % 2 == 0) {
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
} else {
sgp_set_image(0, image1);
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
sgp_reset_image(0);
}
}
}
}
static void bench_sync_mixed(void) {
sgp_set_image(0, image1);
sgp_reset_color();
for (int y=0;y<count;++y) {
for (int x=0;x<count;++x) {
if ((x+y) % 2 == 0) {
sgp_set_color(1.0f, 0, 0, 1.0f);
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
} else {
sgp_set_color(0, 1.0f, 0, 1.0f);
sgp_draw_filled_rect(x*rect_count*2, y*rect_count*2, rect_count, rect_count);
}
}
}
sgp_reset_image(0);
}
static void draw_cat(void) {
sgp_reset_color();
sgp_set_image(0, image1);
sgp_draw_filled_rect(0, 0, rect_count*count*2, rect_count*count*2);
sgp_reset_image(0);
}
static void draw_rect(void) {
sgp_reset_color();
sgp_draw_filled_rect(0, 0, rect_count*count*2, rect_count*count*2);
}
static void frame(void) {
// begin draw commands queue
int width = sapp_width(), height = sapp_height();
sgp_begin(width, height);
// draw background
sgp_set_color(0.05f, 0.05f, 0.05f, 1.0f);
sgp_clear();
sgp_reset_color();
int off = count*rect_count*2;
bench_repeated_textured();
sgp_translate(off, 0);
bench_multiple_textured();
sgp_translate(off, 0);
bench_colored_textured();
sgp_translate(-2*off, off);
bench_repeated_filled();
sgp_translate(off, 0);
bench_mixed();
sgp_translate(off, 0);
bench_colored_filled();
sgp_translate(-2*off, off);
draw_cat();
sgp_translate(off, 0);
draw_rect();
sgp_translate(off, 0);
bench_sync_mixed();
// dispatch draw commands
sg_pass pass = {.swapchain = sglue_swapchain()};
sg_begin_pass(&pass);
sgp_flush();
sgp_end();
sg_end_pass();
sg_commit();
// count frames
static int fps = 0;
static uint64_t last = 0;
uint64_t now = stm_now();
fps++;
if (stm_sec(now - last) >= 1.0) {
printf("FPS: %d\n", fps);
last = now;
fps = 0;
}
}
static sg_image create_image(int width, int height) {
size_t num_pixels = (size_t)(width * height * 4);
unsigned char* data = (unsigned char*)malloc(num_pixels);
assert(data);
for (int y=0;y<height;++y) {
for (int x=0;x<width;++x) {
data[y*width*4+x*4+0] = (x*255) / width;
data[y*width*4+x*4+1] = (y*255) / height;
data[y*width*4+x*4+2] = 255 - (x*y*255)/ (width*height);
data[y*width*4+x*4+3] = 255;
}
}
sg_image_desc image_desc = {0};
image_desc.width = width;
image_desc.height = height;
image_desc.data.subimage[0][0].ptr = data;
image_desc.data.subimage[0][0].size = num_pixels;
sg_image image = sg_make_image(&image_desc);
free(data);
assert(sg_query_image_state(image) == SG_RESOURCESTATE_VALID);
return image;
}
static void init(void) {
stm_setup();
// initialize Sokol GFX
sg_desc sgdesc = {
.environment = sglue_environment(),
.logger.func = slog_func
};
sg_setup(&sgdesc);
if (!sg_isvalid()) {
fprintf(stderr, "Failed to create Sokol GFX context!\n");
exit(-1);
}
// initialize Sokol GP
sgp_desc sgpdesc = {
.max_vertices = 262144,
.max_commands = 32768
};
sgp_setup(&sgpdesc);
if (!sgp_is_valid()) {
fprintf(stderr, "Failed to create Sokol GP context: %s\n", sgp_get_error_message(sgp_get_last_error()));
exit(-1);
}
#if defined(_SAPP_LINUX) && defined(SOKOL_GLCORE)
/* Disable swap interval */
_sapp_glx_swapinterval(0);
#endif
image1 = create_image(128, 128);
image2 = create_image(128, 128);
image_ratio = 1.0f;
}
static void cleanup(void) {
sg_destroy_image(image1);
sg_destroy_image(image2);
sgp_shutdown();
sg_shutdown();
}
sapp_desc sokol_main(int argc, char* argv[]) {
(void)argc;
(void)argv;
return (sapp_desc){
.init_cb = init,
.frame_cb = frame,
.cleanup_cb = cleanup,
.window_title = "Bench (Sokol GP)",
.width = 1280,
.height = 1280,
.logger.func = slog_func,
};
}