From 9a62d3b598cca3c28fa8b6313bba82983cc29ecf Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 11 Mar 2008 12:07:52 -0700 Subject: Remove i830+ driver's use of CARD*/INT* types for great justice. Several uses are actually left, which are determined by the X Server interfaces we're implementing. --- src/i830_exa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/i830_exa.c') diff --git a/src/i830_exa.c b/src/i830_exa.c index 32c55dd0..1f6bf1d9 100644 --- a/src/i830_exa.c +++ b/src/i830_exa.c @@ -376,8 +376,8 @@ i830_upload_to_screen(PixmapPtr pDst, int x, int y, int w, int h, char *src, const int uts_width_max = 16, uts_height_max = 16; int cpp = pDst->drawable.bitsPerPixel / 8; int sub_x, sub_y; - CARD32 br13; - CARD32 offset; + uint32_t br13; + uint32_t offset; if (w > uts_width_max || h > uts_height_max) I830FALLBACK("too large for upload to screen (%d,%d)", w, h); -- cgit v1.2.3