From: Chia-I Wu Date: Tue, 15 Nov 2011 17:07:26 +0000 (-0700) Subject: vbo: fix !FEATURE_beginend build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=42c2c371d6c4c82c3e9176e028281a91edfadafd;p=mesa.git vbo: fix !FEATURE_beginend build Fix a build error in GLES-only build. --- 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 */