Skip to content
Snippets Groups Projects
Commit ee238fb2 authored by Utkarsh Ayachit's avatar Utkarsh Ayachit Committed by Kitware Robot
Browse files

Merge topic '14615-disable-FPFB' into pv-master

f61c11bc Add new baseline for rendering without floating point buffers.
f521f415 Return early if ProjectedTetrahedra volume rendering is unsupported.
16368b4d Disable FP frame buffer when GL_ARG_texture_float is not present.
parents fbcce3a7 f61c11bc
No related branches found
No related tags found
No related merge requests found
98a2bc55bc5dc346cd01dfe6c4378d56
......@@ -97,6 +97,7 @@ vtkOpenGLProjectedTetrahedraMapper::vtkOpenGLProjectedTetrahedraMapper()
this->Internals = new vtkOpenGLProjectedTetrahedraMapper::vtkInternals;
this->UseFloatingPointFrameBuffer = true;
this->CanDoFloatingPointFrameBuffer = false;
this->HasHardwareSupport = false;
}
//-----------------------------------------------------------------------------
......@@ -131,8 +132,7 @@ bool vtkOpenGLProjectedTetrahedraMapper::IsSupported(vtkRenderWindow *rwin)
vtkOpenGLExtensionManager *extensions = context->GetExtensionManager();
bool texSupport
= (extensions->ExtensionSupported("GL_ARB_texture_float") != 0)
&& (extensions->ExtensionSupported("GL_VERSION_1_3") != 0);
= (extensions->ExtensionSupported("GL_VERSION_1_3") != 0);
// use render to FBO when it's supported
this->CanDoFloatingPointFrameBuffer = false;
......@@ -140,7 +140,8 @@ bool vtkOpenGLProjectedTetrahedraMapper::IsSupported(vtkRenderWindow *rwin)
{
this->CanDoFloatingPointFrameBuffer
= (extensions->ExtensionSupported("GL_ARB_framebuffer_object") != 0)
&& (extensions->ExtensionSupported("GL_ARB_draw_buffers") != 0);
&& (extensions->ExtensionSupported("GL_ARB_draw_buffers") != 0)
&& (extensions->ExtensionSupported("GL_ARB_texture_float") != 0);
if (!this->CanDoFloatingPointFrameBuffer)
{
vtkWarningMacro(
......@@ -177,7 +178,8 @@ void vtkOpenGLProjectedTetrahedraMapper::Initialize(vtkRenderer *renderer)
vtkOpenGLRenderWindow *renwin
= vtkOpenGLRenderWindow::SafeDownCast(renderer->GetRenderWindow());
if ( !renwin || !this->IsSupported(renwin) )
this->HasHardwareSupport = renwin != NULL && this->IsSupported(renwin);
if (!this->HasHardwareSupport)
{
// this is an error since there's no fallback.
vtkErrorMacro("The required extensions are not supported.");
......@@ -356,6 +358,11 @@ void vtkOpenGLProjectedTetrahedraMapper::Render(vtkRenderer *renderer,
// load required extensions
this->Initialize(renderer);
if (!this->HasHardwareSupport)
{
return;
}
vtkUnstructuredGridBase *input = this->GetInput();
vtkVolumeProperty *property = volume->GetProperty();
......
......@@ -78,6 +78,7 @@ protected:
bool CanDoFloatingPointFrameBuffer;
bool FloatingPointFrameBufferResourcesAllocated;
bool UseFloatingPointFrameBuffer;
bool HasHardwareSupport;
vtkUnsignedCharArray *Colors;
int UsingCellColors;
......
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