mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-16 10:20:50 +00:00
Remove unused field from ConvolutionMatrixFilter
This commit is contained in:
parent
b7b2d4651d
commit
2527b90544
@ -1,4 +1,5 @@
|
||||
// Aseprite
|
||||
// Copyright (C) 2019 Igara Studio S.A.
|
||||
// Copyright (C) 2001-2016 David Capello
|
||||
//
|
||||
// This program is distributed under the terms of
|
||||
@ -126,7 +127,6 @@ ConvolutionMatrixFilter::ConvolutionMatrixFilter()
|
||||
void ConvolutionMatrixFilter::setMatrix(const base::SharedPtr<ConvolutionMatrix>& matrix)
|
||||
{
|
||||
m_matrix = matrix;
|
||||
m_lines.resize(matrix->getHeight());
|
||||
}
|
||||
|
||||
void ConvolutionMatrixFilter::setTiledMode(TiledMode tiledMode)
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Aseprite
|
||||
// Copyright (C) 2019 Igara Studio S.A.
|
||||
// Copyright (C) 2001-2016 David Capello
|
||||
//
|
||||
// This program is distributed under the terms of
|
||||
@ -8,9 +9,6 @@
|
||||
#define FILTERS_CONVOLUTION_MATRIX_FILTER_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "base/ints.h"
|
||||
#include "base/shared_ptr.h"
|
||||
#include "filters/filter.h"
|
||||
#include "filters/tiled_mode.h"
|
||||
@ -38,7 +36,6 @@ namespace filters {
|
||||
private:
|
||||
base::SharedPtr<ConvolutionMatrix> m_matrix;
|
||||
TiledMode m_tiledMode;
|
||||
std::vector<uint8_t*> m_lines;
|
||||
};
|
||||
|
||||
} // namespace filters
|
||||
|
Loading…
x
Reference in New Issue
Block a user