diff options
author | Daniel Borca <[email protected]> | 2004-07-06 12:37:09 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-07-06 12:37:09 +0000 |
commit | d53d429ed298c500cf785991e648b2862e130dda (patch) | |
tree | 8d04461d81b274abb6f9e921192fe0472e6c596b /src | |
parent | d2dbb253726c48758b774877bbf53d87cdc165d8 (diff) |
use tnl_emit_func, it's safer
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/glide/fxvb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/glide/fxvb.c b/src/mesa/drivers/glide/fxvb.c index d96c6f5aba5..b2367d4c27a 100644 --- a/src/mesa/drivers/glide/fxvb.c +++ b/src/mesa/drivers/glide/fxvb.c @@ -69,10 +69,10 @@ static void copy_pv2( GLcontext *ctx, GLuint edst, GLuint esrc ) } static struct { - void (*emit)( GLcontext *, GLuint, GLuint, void * ); + tnl_emit_func emit; tnl_copy_pv_func copy_pv; tnl_interp_func interp; - GLboolean (*check_tex_sizes)( GLcontext *ctx ); + GLboolean (*check_tex_sizes)( GLcontext *ctx ); GLuint vertex_format; } setup_tab[MAX_SETUP]; |