softpipe: Drop the raw_to* part of the tile cache interface.

Nothing else uses it, so make it static.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2744>
This commit is contained in:
Eric Anholt
2019-11-08 13:49:20 -08:00
committed by Marge Bot
parent 6cdf523f00
commit 8bc56551da
2 changed files with 3 additions and 21 deletions
+3 -3
View File
@@ -354,7 +354,7 @@ x32_s8_get_tile_rgba(const unsigned *src,
}
}
void
static void
pipe_tile_raw_to_rgba(enum pipe_format format,
const void *src,
uint w, uint h,
@@ -401,7 +401,7 @@ pipe_tile_raw_to_rgba(enum pipe_format format,
}
}
void
static void
pipe_tile_raw_to_unsigned(enum pipe_format format,
const void *src,
uint w, uint h,
@@ -413,7 +413,7 @@ pipe_tile_raw_to_unsigned(enum pipe_format format,
0, 0, w, h);
}
void
static void
pipe_tile_raw_to_signed(enum pipe_format format,
void *src,
uint w, uint h,
-18
View File
@@ -99,24 +99,6 @@ pipe_put_tile_rgba_format(struct pipe_transfer *pt,
enum pipe_format format,
const float *p);
void
pipe_tile_raw_to_rgba(enum pipe_format format,
const void *src,
uint w, uint h,
float *dst, unsigned dst_stride);
void
pipe_tile_raw_to_unsigned(enum pipe_format format,
const void *src,
uint w, uint h,
unsigned *dst, unsigned dst_stride);
void
pipe_tile_raw_to_signed(enum pipe_format format,
void *src,
uint w, uint h,
int *dst, unsigned dst_stride);
void
pipe_get_tile_ui_format(struct pipe_transfer *pt,
const void *src,