summaryrefslogtreecommitdiff
path: root/progs/perf/vbo.c
blob: d2630796ae29e3dc904b7c5d53b5703e0d087802 (plain)
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
/*
 * Copyright (C) 2009  VMware, Inc.  All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * VMWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

/**
 * Measure VBO upload speed.
 * That is, measure glBufferDataARB() and glBufferSubDataARB().
 *
 * Brian Paul
 * 16 Sep 2009
 */

#include <string.h>
#include "glmain.h"
#include "common.h"


int WinWidth = 100, WinHeight = 100;

static GLuint VBO;

static GLsizei VBOSize = 0;
static GLubyte *VBOData = NULL;

static const GLboolean DrawPoint = GL_TRUE;
static const GLboolean BufferSubDataInHalves = GL_TRUE;

static const GLfloat Vertex0[2] = { 0.0, 0.0 };


/** Called from test harness/main */
void
PerfInit(void)
{
   /* setup VBO */
   glGenBuffersARB(1, &VBO);
   glBindBufferARB(GL_ARRAY_BUFFER_ARB, VBO);
   glVertexPointer(2, GL_FLOAT, sizeof(Vertex0), (void *) 0);
   glEnableClientState(GL_VERTEX_ARRAY);
}


static void
UploadVBO(unsigned count)
{
   unsigned i;
   for (i = 0; i < count; i++) {
      glBufferDataARB(GL_ARRAY_BUFFER, VBOSize, VBOData, GL_STREAM_DRAW_ARB);

      if (DrawPoint)
         glDrawArrays(GL_POINTS, 0, 1);
   }
   glFinish();
}


static void
UploadSubVBO(unsigned count)
{
   unsigned i;
   for (i = 0; i < count; i++) {
      if (BufferSubDataInHalves) {
         GLsizei half = VBOSize / 2;
         glBufferSubDataARB(GL_ARRAY_BUFFER, 0, half, VBOData);
         glBufferSubDataARB(GL_ARRAY_BUFFER, half, half, VBOData + half);
      }
      else {
         glBufferSubDataARB(GL_ARRAY_BUFFER, 0, VBOSize, VBOData);
      }

      if (DrawPoint)
         glDrawArrays(GL_POINTS, 0, 1);
   }
   glFinish();
}


static const GLsizei Sizes[] = {
   64,
   1024,
   16*1024,
   256*1024,
   1024*1024,
   16*1024*1024,
   0 /* end of list */
};


/** Called from test harness/main */
void
PerfDraw(void)
{
   double rate, mbPerSec;
   int sub, sz;

   /* loop over whole/sub buffer upload */
   for (sub = 0; sub < 2; sub++) {

      /* loop over VBO sizes */
      for (sz = 0; Sizes[sz]; sz++) {
         VBOSize = Sizes[sz];

         VBOData = malloc(VBOSize);
         memcpy(VBOData, Vertex0, sizeof(Vertex0));

         if (sub)
            rate = PerfMeasureRate(UploadSubVBO);
         else
            rate = PerfMeasureRate(UploadVBO);

         mbPerSec = rate * VBOSize / (1024.0 * 1024.0);

         perf_printf("  glBuffer%sDataARB(size = %d): %.1f MB/sec\n",
                     (sub ? "Sub" : ""), VBOSize, mbPerSec);

         free(VBOData);
      }
   }

   exit(0);
}