gallium: rename p_util.c to u_rect.c (it only contains rect copy/fill helpers)
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 22 Aug 2008 22:22:35 +0000 (16:22 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 22 Aug 2008 22:22:35 +0000 (16:22 -0600)
src/gallium/auxiliary/util/Makefile
src/gallium/auxiliary/util/SConscript
src/gallium/auxiliary/util/u_rect.c [moved from src/gallium/auxiliary/util/p_util.c with 99% similarity]

index be1b97b..6eebf6d 100644 (file)
@@ -6,7 +6,6 @@ LIBNAME = util
 C_SOURCES = \
        p_debug.c \
        p_tile.c \
-       p_util.c \
        u_blit.c \
        u_draw_quad.c \
        u_gen_mipmap.c \
@@ -14,6 +13,7 @@ C_SOURCES = \
        u_hash_table.c \
        u_math.c \
        u_mm.c \
+       u_rect.c \
        u_simple_shaders.c \
        u_snprintf.c \
        u_time.c
index 7865307..94382fe 100644 (file)
@@ -7,7 +7,6 @@ util = env.ConvenienceLibrary(
                'p_debug_mem.c',
                'p_debug_prof.c',
                'p_tile.c',
-               'p_util.c',
                'u_blit.c',
                'u_draw_quad.c',
                'u_gen_mipmap.c',
@@ -15,6 +14,7 @@ util = env.ConvenienceLibrary(
                'u_hash_table.c',
                'u_math.c',
                'u_mm.c',
+               'u_rect.c',
                'u_simple_shaders.c',
                'u_snprintf.c',
                'u_time.c',
similarity index 99%
rename from src/gallium/auxiliary/util/p_util.c
rename to src/gallium/auxiliary/util/u_rect.c
index 787881b..94e447b 100644 (file)
@@ -26,7 +26,7 @@
  **************************************************************************/
 
 /**
- * Miscellaneous utility functions.
+ * Rectangle-related helper functions.
  */