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_drawpix.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_drawpix.c')
-rw-r--r-- | src/mesa/swrast/s_drawpix.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_drawpix.c b/src/mesa/swrast/s_drawpix.c index 8fbb0a8d101..4e9b5307cc7 100644 --- a/src/mesa/swrast/s_drawpix.c +++ b/src/mesa/swrast/s_drawpix.c @@ -28,8 +28,10 @@ #include "main/condrender.h" #include "main/context.h" #include "main/image.h" -#include "main/macros.h" #include "main/imports.h" +#include "main/macros.h" +#include "main/pack.h" +#include "main/pixeltransfer.h" #include "main/state.h" #include "s_context.h" |