shifted to new dependency structure

This commit is contained in:
itsmattkc
2019-08-28 01:24:50 +10:00
parent 797a4eae16
commit 5afe7d523c
27 changed files with 343 additions and 265 deletions
+8 -1
View File
@@ -57,8 +57,12 @@ NodeOutput *SolidGenerator::texture_output()
return texture_output_;
}
void SolidGenerator::Process()
QVariant SolidGenerator::Value(NodeOutput *output, const rational &time)
{
Q_UNUSED(output)
Q_UNUSED(time)
/*
// FIXME: Test code
if (texture_ == nullptr) {
QImage img(1920, 1080, QImage::Format_RGBA8888_Premultiplied);
@@ -69,4 +73,7 @@ void SolidGenerator::Process()
texture_output_->set_value(texture_->textureId());
// End test code
*/
return 0;
}