mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
gallium: rename p_util.c to u_rect.c (it only contains rect copy/fill helpers)
This commit is contained in:
parent
fe1e39afbb
commit
2b87174ec3
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
**************************************************************************/
|
||||
|
||||
/**
|
||||
* Miscellaneous utility functions.
|
||||
* Rectangle-related helper functions.
|
||||
*/
|
||||
|
||||
|
||||
Loading…
Add table
Reference in a new issue