paysages3d/src/render/software/CanvasPortion.cpp

13 lines
207 B
C++
Raw Normal View History

#include "CanvasPortion.h"
CanvasPortion::CanvasPortion()
{
}
void CanvasPortion::setSize(int width, int height)
{
this->width = width;
this->height = height;
// TODO Resize and clear pixels
}