diff options
author | Felix Kuehling <[email protected]> | 2004-01-04 16:39:29 +0000 |
---|---|---|
committer | Felix Kuehling <[email protected]> | 2004-01-04 16:39:29 +0000 |
commit | 9741dd6cf40d90cc10357ce06ad9c48dbc0c678c (patch) | |
tree | 00a9afa62461811b231064311bed0637352a171b /src/mesa/tnl | |
parent | 41c310b20a97a9719100f61c6871e9fd4b3ff5f9 (diff) |
Reenable the vtxfmt code paths in the radeon and r200 drivers.
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_vtx_api.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c index 36ba7b6dff6..d77a538ade7 100644 --- a/src/mesa/tnl/t_vtx_api.c +++ b/src/mesa/tnl/t_vtx_api.c @@ -981,7 +981,8 @@ static void GLAPIENTRY _tnl_Begin( GLenum mode ) if (ctx->NewState) { _mesa_update_state( ctx ); - ctx->Exec->Begin(mode); + if (!(tnl->Driver.NotifyBegin && tnl->Driver.NotifyBegin( ctx, mode ))) + ctx->Exec->Begin(mode); return; } |