diff options
author | Brian Paul <[email protected]> | 2011-02-28 18:24:35 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-02-28 18:24:35 -0700 |
commit | b70610b9823fc7dc3672735c11be1a75fbb1a2a4 (patch) | |
tree | 0da37f41b36a6866fe97859346b6635609a73c33 /src/mesa/swrast/s_readpix.c | |
parent | 7d8db55148b0861e35ec6bb6323db6dad4c8f17f (diff) |
mesa: move PBO-related functions into a new file
Diffstat (limited to 'src/mesa/swrast/s_readpix.c')
-rw-r--r-- | src/mesa/swrast/s_readpix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_readpix.c b/src/mesa/swrast/s_readpix.c index 9fe0752a37f..5c8d7e9c5cf 100644 --- a/src/mesa/swrast/s_readpix.c +++ b/src/mesa/swrast/s_readpix.c @@ -24,7 +24,6 @@ #include "main/glheader.h" -#include "main/bufferobj.h" #include "main/colormac.h" #include "main/feedback.h" #include "main/formats.h" @@ -32,6 +31,7 @@ #include "main/imports.h" #include "main/macros.h" #include "main/pack.h" +#include "main/pbo.h" #include "main/state.h" #include "s_context.h" |