diff options
author | Brian Paul <[email protected]> | 2011-11-23 15:33:46 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-11-28 08:07:32 -0700 |
commit | 37bf720da4a165c3fbf22d8ebb87c5c42e02f98e (patch) | |
tree | 1004dc293d17d6f48d31c6a4c289c3ce3740b662 /src/mesa/main/fbobject.c | |
parent | d45c9b239fdc2a2e06e14fc94c118f27d4011024 (diff) |
mesa: move _mesa_base_format_has_channel() into image.c
This is where other format-related functions live.
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 2b4c70afbf7..9111caa1b56 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -39,6 +39,7 @@ #include "formats.h" #include "framebuffer.h" #include "hash.h" +#include "image.h" #include "macros.h" #include "mfeatures.h" #include "mtypes.h" @@ -46,7 +47,6 @@ #include "state.h" #include "teximage.h" #include "texobj.h" -#include "texparam.h" /** Set this to 1 to help debug FBO incompleteness problems */ |