diff options
author | Brian Paul <[email protected]> | 2010-10-23 09:15:01 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-10-23 10:19:29 -0600 |
commit | 1c131752c3e07ef91f49d4970dafca6d26585334 (patch) | |
tree | c6a153387c63e4489d22c3a939162b1cfdd3230b /src/mesa/swrast/s_copypix.c | |
parent | e67f6ee96e1aaeaba70e24d057c21172fa36f165 (diff) |
mesa: split up the image.c file
New files:
pack.c - image/row packing/unpacking functions
pixeltransfer.c - pixel scale/bias/lookup functions
Diffstat (limited to 'src/mesa/swrast/s_copypix.c')
-rw-r--r-- | src/mesa/swrast/s_copypix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_copypix.c b/src/mesa/swrast/s_copypix.c index 86fe3e0a891..46d63792822 100644 --- a/src/mesa/swrast/s_copypix.c +++ b/src/mesa/swrast/s_copypix.c @@ -27,8 +27,8 @@ #include "main/context.h" #include "main/colormac.h" #include "main/condrender.h" -#include "main/image.h" #include "main/macros.h" +#include "main/pixeltransfer.h" #include "main/imports.h" #include "s_context.h" |