aboutsummaryrefslogtreecommitdiff
path: root/graphics/VectorRendererSpec.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/VectorRendererSpec.h')
-rw-r--r--graphics/VectorRendererSpec.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/graphics/VectorRendererSpec.h b/graphics/VectorRendererSpec.h
index 8a101b8e5a..8a7ce78cba 100644
--- a/graphics/VectorRendererSpec.h
+++ b/graphics/VectorRendererSpec.h
@@ -252,16 +252,6 @@ protected:
}
}
- inline void blendFillClip(int x, PixelType *first, PixelType *last, PixelType color, uint8 alpha) {
- while (first != last) {
- if (x >= _clippingArea.left && x <= _clippingArea.right)
- blendPixelPtr(first++, color, alpha);
- else
- ++first;
- ++x;
- }
- }
-
void darkenFill(PixelType *first, PixelType *last);
const PixelFormat _format;