diff options
author | Felix Kuehling <[email protected]> | 2004-04-01 11:10:18 +0000 |
---|---|---|
committer | Felix Kuehling <[email protected]> | 2004-04-01 11:10:18 +0000 |
commit | d1c1056309dcfd771da97cf53d46676533b9e419 (patch) | |
tree | 326d7624c7ce272cf4a64cc772a88ef9ffe57fb4 | |
parent | e5c7f44009cdc9817d7026fda2a3fadbba0e65df (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.c | 5 |
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 3f3a198a243..96ec1f9d7ee 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 |