aboutsummaryrefslogtreecommitdiff
path: root/graphics/VectorRenderer.cpp
diff options
context:
space:
mode:
authorMax Horn2009-01-30 15:43:45 +0000
committerMax Horn2009-01-30 15:43:45 +0000
commitf465abb75d81a248e3c553aa5706031b52c7189d (patch)
tree5d4f56d4ecd57d3bb5246387998b93293583223a /graphics/VectorRenderer.cpp
parente21f5febdc66ae796a57bdd70fbea2eaf26e1f56 (diff)
downloadscummvm-rg350-f465abb75d81a248e3c553aa5706031b52c7189d.tar.gz
scummvm-rg350-f465abb75d81a248e3c553aa5706031b52c7189d.tar.bz2
scummvm-rg350-f465abb75d81a248e3c553aa5706031b52c7189d.zip
Removed unused area convolution code from VectorRenderer
svn-id: r36148
Diffstat (limited to 'graphics/VectorRenderer.cpp')
-rw-r--r--graphics/VectorRenderer.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/graphics/VectorRenderer.cpp b/graphics/VectorRenderer.cpp
index e67f81a363..2616664841 100644
--- a/graphics/VectorRenderer.cpp
+++ b/graphics/VectorRenderer.cpp
@@ -37,17 +37,6 @@
namespace Graphics {
-#ifndef DISABLE_FANCY_THEMES
-const VectorRenderer::ConvolutionDataSet VectorRenderer::_convolutionData[VectorRenderer::kConvolutionMAX] = {
- { {{1, 1, 1}, {1, 8, 1}, {1, 1, 1}}, 16, 0 }, // soft blur matrix
- { {{2, 2, 2}, {2, 2, 2}, {2, 2, 2}}, 18, 0 }, // hard blur matrix
- { {{1, 2, 1}, {2, 4, 2}, {1, 2, 1}}, 16, 0 }, // gaussian blur matrix
- { {{2, 0, 0}, {0, -1, 0}, {0, 0, -1}}, 1, 127}, // emboss matrix
- { {{-1, -1, -1}, {-1, 9, -1}, {-1, -1, -1}}, 1, 0}, // sharpen matrix
- { {{1, 1, 1}, {1, -7, 1}, {1, 1, 1}}, 1, 0} // edge find matrix
-};
-#endif
-
/********************************************************************
* DRAWSTEP handling functions
********************************************************************/