1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkOpenGLRepresentationPainter.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkOpenGLRepresentationPainter.h"
#include "vtkActor.h"
#include "vtkInformation.h"
#include "vtkInformationIntegerKey.h"
#include "vtkObjectFactory.h"
#include "vtkPrimitivePainter.h"
#include "vtkProperty.h"
#include "vtkOpenGL.h"
#include "vtkOpenGLError.h"
vtkStandardNewMacro(vtkOpenGLRepresentationPainter);
//-----------------------------------------------------------------------------
vtkOpenGLRepresentationPainter::vtkOpenGLRepresentationPainter()
{
}
//-----------------------------------------------------------------------------
vtkOpenGLRepresentationPainter::~vtkOpenGLRepresentationPainter()
{
}
//-----------------------------------------------------------------------------
void vtkOpenGLRepresentationPainter::RenderInternal(vtkRenderer *renderer,
vtkActor *actor,
unsigned long typeflags,
bool forceCompileOnly)
{
vtkOpenGLClearErrorMacro();
vtkProperty* prop = actor->GetProperty();
int rep = prop->GetRepresentation();
int reset_needed = 0;
GLenum face = GL_FRONT_AND_BACK;
// If both front & back culling is on, will fall into backface culling.
if (prop->GetBackfaceCulling())
{
face = GL_FRONT;
}
else if (prop->GetFrontfaceCulling())
{
face = GL_BACK;
}
switch (rep)
{
case VTK_POINTS:
glPolygonMode(face, GL_POINT);
reset_needed = 1;
break;
case VTK_WIREFRAME:
glPolygonMode(face, GL_LINE);
reset_needed = 1;
break;
}
bool draw_surface_with_edges =
(prop->GetEdgeVisibility() && prop->GetRepresentation() == VTK_SURFACE);
if (draw_surface_with_edges)
{
glPolygonOffset(0.7, 1.0);
glEnable(GL_POLYGON_OFFSET_FILL);
}
this->Superclass::RenderInternal(renderer, actor, typeflags,
forceCompileOnly);
if (draw_surface_with_edges)
{
glDisable(GL_POLYGON_OFFSET_FILL);
}
this->TimeToDraw += this->DelegatePainter?
this->DelegatePainter->GetTimeToDraw() : 0;
if (reset_needed)
{
// reset the default.
glPolygonMode(face, GL_FILL);
}
if (draw_surface_with_edges)
{
glPushAttrib(GL_CURRENT_BIT|GL_LIGHTING_BIT|GL_ENABLE_BIT);
double color[4];
prop->GetEdgeColor(color);
color[0] *= prop->GetOpacity();
color[1] *= prop->GetOpacity();
color[2] *= prop->GetOpacity();
color[3] = prop->GetOpacity();
glDisable(GL_LIGHTING);
glColor4dv(color);
glPolygonMode(face, GL_LINE);
// Disable textures when rendering the surface edges.
// This ensures that edges are always drawn solid.
glDisable(GL_TEXTURE_2D);
this->Information->Set(vtkPolyDataPainter::DISABLE_SCALAR_COLOR(), 1);
this->Superclass::RenderInternal(renderer, actor, typeflags,
forceCompileOnly);
this->TimeToDraw += this->DelegatePainter?
this->DelegatePainter->GetTimeToDraw() : 0;
this->Information->Remove(vtkPolyDataPainter::DISABLE_SCALAR_COLOR());
// reset the default.
glPolygonMode(face, GL_FILL);
glPopAttrib(); //(GL_CURRENT_BIT|GL_LIGHTING|GL_ENABLE_BIT)
}
vtkOpenGLCheckErrorMacro("failed after RenderInternal");
}
//-----------------------------------------------------------------------------
void vtkOpenGLRepresentationPainter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|