summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Kuehling <fxkuehl@gmx.de>2004-04-01 11:10:18 +0000
committerFelix Kuehling <fxkuehl@gmx.de>2004-04-01 11:10:18 +0000
commitd1c1056309dcfd771da97cf53d46676533b9e419 (patch)
tree326d7624c7ce272cf4a64cc772a88ef9ffe57fb4
parente5c7f44009cdc9817d7026fda2a3fadbba0e65df (diff)
Define empty _tnl_x86_exec_vtxfmt_init if USE_X86_ASM is undefined. This
fixes a missing symbol in libGLcore.a.
-rw-r--r--src/mesa/tnl/t_vtx_x86.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/tnl/t_vtx_x86.c b/src/mesa/tnl/t_vtx_x86.c
index 3f3a198a24..96ec1f9d7e 100644
--- a/src/mesa/tnl/t_vtx_x86.c
+++ b/src/mesa/tnl/t_vtx_x86.c
@@ -336,4 +336,9 @@ void _tnl_InitX86Codegen( struct _tnl_dynfn_generators *gen )
(void) gen;
}
+void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx )
+{
+ (void) ctx;
+}
+
#endif