summaryrefslogtreecommitdiff
path: root/src/sphere.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sphere.cpp')
-rw-r--r--src/sphere.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sphere.cpp b/src/sphere.cpp
index c580323..79a733a 100644
--- a/src/sphere.cpp
+++ b/src/sphere.cpp
@@ -114,11 +114,11 @@ GLUsphereProducer::element_count(void) const
static void
sphere_revolve_cb(void *data, const GLUvec4 *position, const GLUvec4 *normal,
- const GLUvec4 *tangent, const GLUvec4 *uv)
+ const GLUvec4 *tangent, const GLUvec4 *uv, unsigned count)
{
GLUconsumerFriend *c = (GLUconsumerFriend *) data;
- c->vertex(*position, *normal, *tangent, *uv);
+ c->vertex_batch(position, normal, tangent, uv, count);
}