mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-05 04:00:34 +01:00
gallium: Fix typo in function name.
This commit is contained in:
parent
939be248fe
commit
43df2fe2d9
1 changed files with 2 additions and 2 deletions
|
|
@ -346,7 +346,7 @@ r5g6b5_get_tile_rgba(ushort *src,
|
|||
|
||||
|
||||
static void
|
||||
r5g5b5_put_tile_rgba(ushort *dst,
|
||||
r5g6b5_put_tile_rgba(ushort *dst,
|
||||
unsigned w, unsigned h,
|
||||
const float *p,
|
||||
unsigned src_stride)
|
||||
|
|
@ -827,7 +827,7 @@ pipe_put_tile_rgba(struct pipe_surface *ps,
|
|||
/*a1r5g5b5_put_tile_rgba((ushort *) packed, w, h, p, src_stride);*/
|
||||
break;
|
||||
case PIPE_FORMAT_R5G6B5_UNORM:
|
||||
r5g5b5_put_tile_rgba((ushort *) packed, w, h, p, src_stride);
|
||||
r5g6b5_put_tile_rgba((ushort *) packed, w, h, p, src_stride);
|
||||
break;
|
||||
case PIPE_FORMAT_R8G8B8A8_UNORM:
|
||||
assert(0);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue