From 42c2c371d6c4c82c3e9176e028281a91edfadafd Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Tue, 15 Nov 2011 10:07:26 -0700 Subject: [PATCH] vbo: fix !FEATURE_beginend build Fix a build error in GLES-only build. --- src/mesa/vbo/vbo_noop.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mesa/vbo/vbo_noop.h b/src/mesa/vbo/vbo_noop.h index f9180374fb8..92f61d356e3 100644 --- a/src/mesa/vbo/vbo_noop.h +++ b/src/mesa/vbo/vbo_noop.h @@ -38,6 +38,12 @@ _mesa_noop_vtxfmt_init(GLvertexformat *vfmt); extern GLboolean _mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch); +#else + +static inline void +_mesa_noop_vtxfmt_init(GLvertexformat *vfmt) +{ +} #endif /* FEATURE_beginend */ -- 2.30.2