aboutsummaryrefslogtreecommitdiff
path: root/graphics/pixelformat.h
diff options
context:
space:
mode:
authorMax Horn2009-12-09 16:45:35 +0000
committerMax Horn2009-12-09 16:45:35 +0000
commit626f85ae5e9d3aea2d528cbf847aee6ec6051407 (patch)
tree7b9bf8b8528c229584fcc670c2b60d67f4ba923b /graphics/pixelformat.h
parentfb5e747565e28a6863190e0e837899d5177244af (diff)
downloadscummvm-rg350-626f85ae5e9d3aea2d528cbf847aee6ec6051407.tar.gz
scummvm-rg350-626f85ae5e9d3aea2d528cbf847aee6ec6051407.tar.bz2
scummvm-rg350-626f85ae5e9d3aea2d528cbf847aee6ec6051407.zip
Move findCompatibleFormat from graphics/pixelformat.h to engines/engine.cpp
This function is used in only one place. Declaring it requires common/list.h; by putting it into pixelformat.h, which is included by common/system.h, tons of things suddenly included list.h for no good reason. If we ever need to call this function in other places, we can figure out aborts more appropriate place for it. svn-id: r46310
Diffstat (limited to 'graphics/pixelformat.h')
-rw-r--r--graphics/pixelformat.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/graphics/pixelformat.h b/graphics/pixelformat.h
index 1822370fcd..7b95eabd35 100644
--- a/graphics/pixelformat.h
+++ b/graphics/pixelformat.h
@@ -27,7 +27,6 @@
#define GRAPHICS_PIXELFORMAT_H
#include "common/scummsys.h"
-#include "common/list.h"
namespace Graphics {
@@ -148,26 +147,6 @@ struct PixelFormat {
}
};
-/**
- * Determines the first matching format between two lists.
- *
- * @param backend The higher priority list, meant to be a list of formats supported by the backend
- * @param frontend The lower priority list, meant to be a list of formats supported by the engine
- * @return The first item on the backend list that also occurs on the frontend list
- * or PixelFormat::createFormatCLUT8() if no matching formats were found.
- */
-inline PixelFormat findCompatibleFormat(Common::List<PixelFormat> backend, Common::List<PixelFormat> frontend) {
-#ifdef USE_RGB_COLOR
- for (Common::List<PixelFormat>::iterator i = backend.begin(); i != backend.end(); ++i) {
- for (Common::List<PixelFormat>::iterator j = frontend.begin(); j != frontend.end(); ++j) {
- if (*i == *j)
- return *i;
- }
- }
-#endif
- return PixelFormat::createFormatCLUT8();
-}
-
} // End of namespace Graphics
#endif