Compositor: Remove unused funciton
This commit is contained in:
parent
4a04d7ae89
commit
edbd3ebcdc
@ -155,31 +155,3 @@ void TextureBaseOperation::executePixelSampled(float output[4], float x, float y
|
||||
output[0] = output[1] = output[2] = output[3];
|
||||
}
|
||||
}
|
||||
|
||||
MemoryBuffer *TextureBaseOperation::createMemoryBuffer(rcti * /*rect2*/)
|
||||
{
|
||||
int height = getHeight();
|
||||
int width = getWidth();
|
||||
DataType datatype = this->getOutputSocket()->getDataType();
|
||||
int add = 4;
|
||||
if (datatype == COM_DT_VALUE) {
|
||||
add = 1;
|
||||
}
|
||||
|
||||
rcti rect;
|
||||
rect.xmin = 0;
|
||||
rect.ymin = 0;
|
||||
rect.xmax = width;
|
||||
rect.ymax = height;
|
||||
MemoryBuffer *result = new MemoryBuffer(datatype, &rect);
|
||||
|
||||
float *data = result->getBuffer();
|
||||
|
||||
for (int y = 0; y < height; y++) {
|
||||
for (int x = 0; x < width; x++, data += add) {
|
||||
this->executePixelSampled(data, x, y, COM_PS_NEAREST);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
@ -59,8 +59,6 @@ protected:
|
||||
* Constructor
|
||||
*/
|
||||
TextureBaseOperation();
|
||||
|
||||
MemoryBuffer *createMemoryBuffer(rcti *rect2);
|
||||
public:
|
||||
void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user