Skip to content
Snippets Groups Projects
Commit 54312bc7 authored by David E. DeMarle's avatar David E. DeMarle
Browse files

A change to the texture has to cause a redraw.

GL side catches this, vtk2osp missed it.
parent 9d89712e
No related branches found
No related tags found
No related merge requests found
......@@ -23,11 +23,13 @@
#include "vtkInformationIntegerKey.h"
#include "vtkInformationObjectBaseKey.h"
#include "vtkInformationStringKey.h"
#include "vtkImageData.h"
#include "vtkMapper.h"
#include "vtkObjectFactory.h"
#include "vtkPiecewiseFunction.h"
#include "vtkPolyData.h"
#include "vtkProperty.h"
#include "vtkTexture.h"
#include "vtkViewNodeCollection.h"
#include "ospray/ospray.h"
......@@ -173,6 +175,7 @@ vtkMTimeType vtkOSPRayActorNode::GetMTime()
vtkDataObject * dobj = nullptr;
vtkPolyData *poly = nullptr;
vtkMapper *mapper = act->GetMapper();
vtkTexture *texture = act->GetTexture();
if (mapper)
{
//if (act->GetRedrawMTime() > mtime)
......@@ -235,5 +238,16 @@ vtkMTimeType vtkOSPRayActorNode::GetMTime()
dit->Delete();
}
}
if (texture)
{
if (texture->GetMTime() > mtime)
{
mtime = texture->GetMTime();
}
if (texture->GetInput() && texture->GetInput()->GetMTime() > mtime)
{
mtime = texture->GetInput()->GetMTime();
}
}
return mtime;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment