diff options
author | Luca Barbieri <[email protected]> | 2010-08-11 10:51:28 +0200 |
---|---|---|
committer | Luca Barbieri <[email protected]> | 2010-08-11 11:08:51 +0200 |
commit | eee5cea385b6871fa934a7882b2f214e3cbace8b (patch) | |
tree | 7a5ed40f8a0f1ca4dce90e2dc7f140714f245b7f /src/gallium/auxiliary/util | |
parent | 0dcf0f9dfaa23b08d2bc20f8cbd02550c2632e52 (diff) |
auxiliary: fix u_split_prim naming convention
Current practice is to start identifiers with "util_" instead of "u_".
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_split_prim.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/util/u_split_prim.h b/src/gallium/auxiliary/util/u_split_prim.h index 3c438da0baf..e526a73fc3b 100644 --- a/src/gallium/auxiliary/util/u_split_prim.h +++ b/src/gallium/auxiliary/util/u_split_prim.h @@ -1,7 +1,7 @@ /* Originally written by Ben Skeggs for the nv50 driver*/ #include <pipe/p_defines.h> -struct u_split_prim { +struct util_split_prim { void *priv; void (*emit)(void *priv, unsigned start, unsigned count); void (*edge)(void *priv, boolean enabled); @@ -17,7 +17,7 @@ struct u_split_prim { }; static INLINE void -u_split_prim_init(struct u_split_prim *s, +util_split_prim_init(struct util_split_prim *s, unsigned mode, unsigned start, unsigned count) { if (mode == PIPE_PRIM_LINE_LOOP) { @@ -35,7 +35,7 @@ u_split_prim_init(struct u_split_prim *s, } static INLINE boolean -u_split_prim_next(struct u_split_prim *s, unsigned max_verts) +util_split_prim_next(struct util_split_prim *s, unsigned max_verts) { int repeat = 0; |