Add transferFunction to dataplane

This commit is contained in:
Sebastian Piwell
2016-04-26 14:50:50 -04:00
parent f6a6245795
commit b67180e325
9 changed files with 34 additions and 8 deletions

View File

@@ -224,4 +224,9 @@ size_t TransferFunction::width() {
update();
return _texture->width();
}
void TransferFunction::bind() {
update();
_texture->bind();
}
}