diff options
author | Keith Whitwell <[email protected]> | 2004-07-01 13:14:05 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-07-01 13:14:05 +0000 |
commit | 3d38361b718d490e1e7fda64519952ec887cd149 (patch) | |
tree | cb4aa9e3da58210f0ef4f4e6172b9b78892cc30a /src/mesa/tnl/t_vertex.c | |
parent | c3c8c71846fb507b57282128d53ba9666e66fe03 (diff) |
Rename the various function types in t_context.h to include a tnl_ prefix.
Diffstat (limited to 'src/mesa/tnl/t_vertex.c')
-rw-r--r-- | src/mesa/tnl/t_vertex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_vertex.c b/src/mesa/tnl/t_vertex.c index 0adbfede2d5..28b81c1d371 100644 --- a/src/mesa/tnl/t_vertex.c +++ b/src/mesa/tnl/t_vertex.c @@ -588,8 +588,8 @@ static void extract_1ub_1f( const struct tnl_clipspace_attr *a, GLfloat *out, co static struct { const char *name; - extract_func extract; - insert_func insert[4]; + tnl_extract_func extract; + tnl_insert_func insert[4]; const GLuint attrsize; } format_info[EMIT_MAX] = { |