Skip to content

Commit dc5b634

Browse files
committed
Remove remaining mention to offset in VectorImage
1 parent 866fcf7 commit dc5b634

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

SEFramework/SEFramework/Image/VectorImage.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
#include "SEFramework/Image/ImageBase.h"
3434

3535

36-
// FIXME get rid of offset, it was a bad idea
37-
3836
namespace SourceXtractor {
3937

4038
/**
@@ -59,11 +57,6 @@ class VectorImage final : public ImageBase<T>, public WriteableImage<T> {
5957
assert(width > 0 && height > 0);
6058
}
6159

62-
VectorImage(int width, int height, PixelCoordinate offset) :
63-
m_width(width), m_height(height), m_data(width * height) {
64-
assert(width > 0 && height > 0);
65-
}
66-
6760
VectorImage(int width, int height, std::vector<T> data) :
6861
m_width(width), m_height(height), m_data(std::move(data)) {
6962
assert(width > 0 && height > 0);

0 commit comments

Comments
 (0)