aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/gallium
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2013-07-17 13:18:21 +0200
committermarha <marha@users.sourceforge.net>2013-07-17 13:18:21 +0200
commitf5e157731e6b51421ac89cfefb666b8bbf971b03 (patch)
treea39529411c67f07761f016803733d1819b2c8e5a /mesalib/src/gallium
parent06f4de23ace4de1fd628c37891214f0a4ecb77db (diff)
downloadvcxsrv-f5e157731e6b51421ac89cfefb666b8bbf971b03.tar.gz
vcxsrv-f5e157731e6b51421ac89cfefb666b8bbf971b03.tar.bz2
vcxsrv-f5e157731e6b51421ac89cfefb666b8bbf971b03.zip
mesa mkfontscale xserver git update 17 Jul 2013
xserver commit 74469895e39fa38337f59edd64c4031ab9bb51d8 mkfontscale commit f48de13423c7300f4da9f61993b624426b38ddc0 mesa commit b20e0fb5204ea85904e9f72f583e65bf35b446cb
Diffstat (limited to 'mesalib/src/gallium')
-rw-r--r--mesalib/src/gallium/auxiliary/util/u_format.c8
-rw-r--r--mesalib/src/gallium/auxiliary/util/u_format.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/mesalib/src/gallium/auxiliary/util/u_format.c b/mesalib/src/gallium/auxiliary/util/u_format.c
index 686ca8a89..08ef6ab3e 100644
--- a/mesalib/src/gallium/auxiliary/util/u_format.c
+++ b/mesalib/src/gallium/auxiliary/util/u_format.c
@@ -297,7 +297,7 @@ util_format_read_4ui(enum pipe_format format,
{
const struct util_format_description *format_desc;
const uint8_t *src_row;
- unsigned *dst_row;
+ uint32_t *dst_row;
format_desc = util_format_description(format);
@@ -318,7 +318,7 @@ util_format_write_4ui(enum pipe_format format,
{
const struct util_format_description *format_desc;
uint8_t *dst_row;
- const unsigned *src_row;
+ const uint32_t *src_row;
format_desc = util_format_description(format);
@@ -339,7 +339,7 @@ util_format_read_4i(enum pipe_format format,
{
const struct util_format_description *format_desc;
const uint8_t *src_row;
- int *dst_row;
+ int32_t *dst_row;
format_desc = util_format_description(format);
@@ -360,7 +360,7 @@ util_format_write_4i(enum pipe_format format,
{
const struct util_format_description *format_desc;
uint8_t *dst_row;
- const int *src_row;
+ const int32_t *src_row;
format_desc = util_format_description(format);
diff --git a/mesalib/src/gallium/auxiliary/util/u_format.h b/mesalib/src/gallium/auxiliary/util/u_format.h
index bb729c095..28527f532 100644
--- a/mesalib/src/gallium/auxiliary/util/u_format.h
+++ b/mesalib/src/gallium/auxiliary/util/u_format.h
@@ -361,13 +361,13 @@ struct util_format_description
* Only defined for INT formats.
*/
void
- (*unpack_rgba_uint)(unsigned *dst, unsigned dst_stride,
+ (*unpack_rgba_uint)(uint32_t *dst, unsigned dst_stride,
const uint8_t *src, unsigned src_stride,
unsigned width, unsigned height);
void
(*pack_rgba_uint)(uint8_t *dst, unsigned dst_stride,
- const unsigned *src, unsigned src_stride,
+ const uint32_t *src, unsigned src_stride,
unsigned width, unsigned height);
/**
@@ -377,13 +377,13 @@ struct util_format_description
* Only defined for INT formats.
*/
void
- (*unpack_rgba_sint)(signed *dst, unsigned dst_stride,
+ (*unpack_rgba_sint)(int32_t *dst, unsigned dst_stride,
const uint8_t *src, unsigned src_stride,
unsigned width, unsigned height);
void
(*pack_rgba_sint)(uint8_t *dst, unsigned dst_stride,
- const int *src, unsigned src_stride,
+ const int32_t *src, unsigned src_stride,
unsigned width, unsigned height);
/**