Skip to content
Snippets Groups Projects
Commit ae30efa5 authored by Cory Quammen's avatar Cory Quammen Committed by Kitware Robot
Browse files

Merge topic 'quieter_apple_warning'


9d152109 Warn only once about Apple bug

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Reviewed-by: default avatarKen Martin <ken.martin@kitware.com>
Merge-request: !948
parents 7794d4dc 9d152109
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,7 @@
#include "vtkPolyData2DFS.h"
#include "vtkPolyDataWideLineGS.h"
//-----------------------------------------------------------------------------
vtkStandardNewMacro(vtkOpenGLPolyDataMapper2D);
//-----------------------------------------------------------------------------
......@@ -560,9 +561,15 @@ void vtkOpenGLPolyDataMapper2D::UpdateVBO(vtkActor2D *act, vtkViewport *viewport
this->AppleBugPrimIDs, vtkOpenGLBufferObject::ArrayBuffer);
this->AppleBugPrimIDBuffer->Release();
vtkWarningMacro("VTK is working around a bug in Apple-AMD hardware related to gl_PrimitiveID. This may cause significant memory and performance impacts. Your hardware has been identified as vendor "
<< (const char *)glGetString(GL_VENDOR) << " with renderer of "
<< (const char *)glGetString(GL_RENDERER));
static bool warnAppleBugOnce = true;
if (warnAppleBugOnce)
{
vtkWarningMacro("VTK is working around a bug in Apple-AMD hardware related to gl_PrimitiveID. This may cause significant memory and performance impacts. Your hardware has been identified as vendor "
<< (const char *)glGetString(GL_VENDOR) << " with renderer of "
<< (const char *)glGetString(GL_RENDERER));
warnAppleBugOnce = false;
}
}
// if we have cell scalars then we have to
......
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