blob: a9d4102de9f9a3743f9769b78f7957c194b7af19 [file] [log] [blame]
Keith Whitwell2884c312009-09-17 12:09:16 +01001/*
2 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * VMWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 */
21
22/**
23 * Measure VBO upload speed.
24 * That is, measure glBufferDataARB() and glBufferSubDataARB().
25 *
26 * Brian Paul
27 * 16 Sep 2009
28 */
29
30#include <string.h>
31#include "glmain.h"
32#include "common.h"
33
Keith Whitwell7ce04212009-09-21 15:56:17 +010034/* Copy data out of a large array to avoid caching effects:
35 */
36#define DATA_SIZE (16*1024*1024)
Keith Whitwell2884c312009-09-17 12:09:16 +010037
38int WinWidth = 100, WinHeight = 100;
39
40static GLuint VBO;
41
42static GLsizei VBOSize = 0;
Keith Whitwell7ce04212009-09-21 15:56:17 +010043static GLsizei SubSize = 0;
Brian Paulbae2d582009-09-22 09:53:35 -060044static GLubyte *VBOData = NULL; /* array[DATA_SIZE] */
Keith Whitwell2884c312009-09-17 12:09:16 +010045
46static const GLboolean DrawPoint = GL_TRUE;
47static const GLboolean BufferSubDataInHalves = GL_TRUE;
48
49static const GLfloat Vertex0[2] = { 0.0, 0.0 };
50
51
52/** Called from test harness/main */
53void
54PerfInit(void)
55{
56 /* setup VBO */
57 glGenBuffersARB(1, &VBO);
58 glBindBufferARB(GL_ARRAY_BUFFER_ARB, VBO);
59 glVertexPointer(2, GL_FLOAT, sizeof(Vertex0), (void *) 0);
60 glEnableClientState(GL_VERTEX_ARRAY);
61}
62
63
64static void
65UploadVBO(unsigned count)
66{
67 unsigned i;
Keith Whitwell7ce04212009-09-21 15:56:17 +010068 unsigned total = 0;
69 unsigned src = 0;
Keith Whitwell2884c312009-09-17 12:09:16 +010070
Keith Whitwell7ce04212009-09-21 15:56:17 +010071 for (i = 0; i < count; i++) {
72 glBufferDataARB(GL_ARRAY_BUFFER, VBOSize, VBOData + src, GL_STREAM_DRAW_ARB);
73 glDrawArrays(GL_POINTS, 0, 1);
74
75 /* Throw in an occasional flush to work around a driver crash:
76 */
77 total += VBOSize;
78 if (total >= 16*1024*1024) {
79 glFlush();
80 total = 0;
81 }
82
83 src += VBOSize;
84 src %= DATA_SIZE;
Keith Whitwell2884c312009-09-17 12:09:16 +010085 }
86 glFinish();
87}
88
89
90static void
91UploadSubVBO(unsigned count)
92{
93 unsigned i;
Keith Whitwell7ce04212009-09-21 15:56:17 +010094 unsigned src = 0;
95
Keith Whitwell2884c312009-09-17 12:09:16 +010096 for (i = 0; i < count; i++) {
Keith Whitwell7ce04212009-09-21 15:56:17 +010097 unsigned offset = (i * SubSize) % VBOSize;
98 glBufferSubDataARB(GL_ARRAY_BUFFER, offset, SubSize, VBOData + src);
99
100 if (DrawPoint) {
101 glDrawArrays(GL_POINTS, offset / sizeof(Vertex0), 1);
Keith Whitwell2884c312009-09-17 12:09:16 +0100102 }
103
Keith Whitwell7ce04212009-09-21 15:56:17 +0100104 src += SubSize;
105 src %= DATA_SIZE;
106 }
107 glFinish();
108}
109
Brian Paulbae2d582009-09-22 09:53:35 -0600110
Brian Paulaa808512009-09-22 09:29:27 -0600111/* Do multiple small SubData uploads, then call DrawArrays. This may be a
Keith Whitwell7ce04212009-09-21 15:56:17 +0100112 * fairer comparison to back-to-back BufferData calls:
113 */
114static void
115BatchUploadSubVBO(unsigned count)
116{
117 unsigned i = 0, j;
118 unsigned period = VBOSize / SubSize;
119 unsigned src = 0;
120
121 while (i < count) {
122 for (j = 0; j < period && i < count; j++, i++) {
123 unsigned offset = j * SubSize;
124 glBufferSubDataARB(GL_ARRAY_BUFFER, offset, SubSize, VBOData + src);
125 }
126
127 glDrawArrays(GL_POINTS, 0, 1);
128
129 src += SubSize;
130 src %= DATA_SIZE;
Keith Whitwell2884c312009-09-17 12:09:16 +0100131 }
132 glFinish();
133}
134
135
Brian Paulbae2d582009-09-22 09:53:35 -0600136/**
137 * Test the sequence:
138 * create/load VBO
139 * draw
140 * destroy VBO
141 */
142static void
143CreateDrawDestroyVBO(unsigned count)
144{
145 unsigned i;
146 for (i = 0; i < count; i++) {
147 GLuint vbo;
148 /* create/load */
149 glGenBuffersARB(1, &vbo);
150 glBufferDataARB(GL_ARRAY_BUFFER, VBOSize, VBOData, GL_STREAM_DRAW_ARB);
151 /* draw */
152 glVertexPointer(2, GL_FLOAT, sizeof(Vertex0), (void *) 0);
153 glDrawArrays(GL_POINTS, 0, 1);
154 /* destroy */
155 glDeleteBuffersARB(1, &vbo);
156 }
157 glFinish();
158}
159
160
Keith Whitwell2884c312009-09-17 12:09:16 +0100161static const GLsizei Sizes[] = {
162 64,
163 1024,
164 16*1024,
165 256*1024,
166 1024*1024,
167 16*1024*1024,
168 0 /* end of list */
169};
170
Keith Whitwella7b26592009-09-21 16:55:12 +0100171void
172PerfNextRound(void)
173{
174}
Keith Whitwell2884c312009-09-17 12:09:16 +0100175
176/** Called from test harness/main */
177void
178PerfDraw(void)
179{
180 double rate, mbPerSec;
Brian Paul7e5004b2009-09-22 09:43:08 -0600181 int i, sz;
Keith Whitwell7ce04212009-09-21 15:56:17 +0100182
Brian Paul7e5004b2009-09-22 09:43:08 -0600183 /* Load VBOData buffer with duplicated Vertex0.
184 */
Keith Whitwell7ce04212009-09-21 15:56:17 +0100185 VBOData = calloc(DATA_SIZE, 1);
186
187 for (i = 0; i < DATA_SIZE / sizeof(Vertex0); i++) {
188 memcpy(VBOData + i * sizeof(Vertex0),
189 Vertex0,
190 sizeof(Vertex0));
191 }
192
Brian Paul7e5004b2009-09-22 09:43:08 -0600193 /* glBufferDataARB()
194 */
195 for (sz = 0; Sizes[sz]; sz++) {
196 SubSize = VBOSize = Sizes[sz];
197 rate = PerfMeasureRate(UploadVBO);
198 mbPerSec = rate * VBOSize / (1024.0 * 1024.0);
199 perf_printf(" glBufferDataARB(size = %d): %.1f MB/sec\n",
200 VBOSize, mbPerSec);
201 }
Keith Whitwell2884c312009-09-17 12:09:16 +0100202
Brian Paul7e5004b2009-09-22 09:43:08 -0600203 /* glBufferSubDataARB()
204 */
205 for (sz = 0; Sizes[sz]; sz++) {
206 SubSize = VBOSize = Sizes[sz];
207 rate = PerfMeasureRate(UploadSubVBO);
208 mbPerSec = rate * VBOSize / (1024.0 * 1024.0);
209 perf_printf(" glBufferSubDataARB(size = %d): %.1f MB/sec\n",
210 VBOSize, mbPerSec);
211 }
Keith Whitwell2884c312009-09-17 12:09:16 +0100212
Brian Paul7e5004b2009-09-22 09:43:08 -0600213 /* Batch upload
214 */
215 VBOSize = 1024 * 1024;
216 glBufferDataARB(GL_ARRAY_BUFFER, VBOSize, VBOData, GL_STREAM_DRAW_ARB);
Keith Whitwell2884c312009-09-17 12:09:16 +0100217
Brian Paul7e5004b2009-09-22 09:43:08 -0600218 for (sz = 0; Sizes[sz] < VBOSize; sz++) {
219 SubSize = Sizes[sz];
220 rate = PerfMeasureRate(UploadSubVBO);
221 mbPerSec = rate * SubSize / (1024.0 * 1024.0);
222 perf_printf(" glBufferSubDataARB(size = %d, VBOSize = %d): %.1f MB/sec\n",
223 SubSize, VBOSize, mbPerSec);
224 }
Keith Whitwell2884c312009-09-17 12:09:16 +0100225
Brian Paul7e5004b2009-09-22 09:43:08 -0600226 for (sz = 0; Sizes[sz] < VBOSize; sz++) {
227 SubSize = Sizes[sz];
228 rate = PerfMeasureRate(BatchUploadSubVBO);
229 mbPerSec = rate * SubSize / (1024.0 * 1024.0);
230 perf_printf(" glBufferSubDataARB(size = %d, VBOSize = %d), batched: %.1f MB/sec\n",
231 SubSize, VBOSize, mbPerSec);
Keith Whitwell2884c312009-09-17 12:09:16 +0100232 }
233
Brian Paulbae2d582009-09-22 09:53:35 -0600234 /* Create/Draw/Destroy
235 */
236 for (sz = 0; Sizes[sz]; sz++) {
237 SubSize = VBOSize = Sizes[sz];
238 rate = PerfMeasureRate(CreateDrawDestroyVBO);
239 mbPerSec = rate * VBOSize / (1024.0 * 1024.0);
240 perf_printf(" VBO Create/Draw/Destroy(size = %d): %.1f MB/sec, %.1f draws/sec\n",
241 VBOSize, mbPerSec, rate);
242 }
243
Keith Whitwell2884c312009-09-17 12:09:16 +0100244 exit(0);
245}