diff options
author | Marek Olšák <[email protected]> | 2011-04-27 12:52:10 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-04-29 11:31:55 +0200 |
commit | 1271424615b62544662a606bb23f6d7117a8b0e7 (patch) | |
tree | 66f3dd6ae4c654858e4db1cba66da982a80d8e89 /src/mesa/main/mipmap.c | |
parent | de9f55437ab7110dd79ebebaac543d35493380ce (diff) |
mesa, util: move RGB9E5 conversion functions to gallium/util
Also use MAX3 and incorporate Ian's suggestion in texformat.c.
I don't think wrapping u_format_rgb9e5.h in another header and thus making it
more complicated is worth it.
Diffstat (limited to 'src/mesa/main/mipmap.c')
-rw-r--r-- | src/mesa/main/mipmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c index 88cb5b53bf7..a6e3652c789 100644 --- a/src/mesa/main/mipmap.c +++ b/src/mesa/main/mipmap.c @@ -35,7 +35,7 @@ #include "texstore.h" #include "image.h" #include "macros.h" -#include "rgb9e5.h" +#include "../../gallium/auxiliary/util/u_format_rgb9e5.h" |