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
|
/*=========================================================================
Program: Visualization Toolkit
Module: TestGenericVertexAttributesGLSLAlphaBlending.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.
=========================================================================*/
// .NAME Test of vtkGLSLShaderDeviceAdapter2 with XML shader style 2 and
// alpha blending.
// .SECTION Description
// this program tests the shader support in vtkRendering.
#include "vtkActor.h"
#include "vtkBrownianPoints.h"
#include "vtkCamera.h"
#include "vtkProperty.h"
#include "vtkPolyDataMapper.h"
#include "vtkRenderer.h"
#include "vtkRenderWindow.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkSphereSource.h"
#include "vtkTestUtilities.h"
#include "vtkRegressionTestImage.h"
// Make sure to have a valid OpenGL context current on the calling thread
// before calling it. Defined in TestTranslucentLUTDepthPeelingPass.cxx.
bool MesaHasVTKBug8135(vtkRenderWindow *);
int TestGenericVertexAttributesGLSLAlphaBlending(int argc, char *argv[])
{
char shaders1[] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<Material name=\"GenericAttributes1\"> \
<Shader scope=\"Vertex\" name=\"VertexShader\" location=\"Inline\"\
language=\"GLSL\" entry=\"main\" style=\"2\"> attribute vec3 genAttrVector; \
varying vec4 color; \
void propFuncVS(void) \
{ \
gl_Position = gl_ModelViewProjectionMatrix *gl_Vertex; \
color = vec4(normalize(genAttrVector), 0.3); \
} \
</Shader> \
<Shader scope=\"Fragment\" name=\"FragmentShader\" location=\"Inline\" \
language=\"GLSL\" entry=\"main\" style=\"2\"> \
varying vec4 color; \
void propFuncFS() \
{ \
gl_FragColor = color; \
} \
</Shader> \
</Material>";
vtkSphereSource * sphere = vtkSphereSource::New();
sphere->SetRadius(5);
sphere->SetPhiResolution(20);
sphere->SetThetaResolution(20);
vtkBrownianPoints * randomVector = vtkBrownianPoints::New();
randomVector->SetMinimumSpeed(0);
randomVector->SetMaximumSpeed(1);
randomVector->SetInputConnection(sphere->GetOutputPort());
vtkPolyDataMapper *mapper = vtkPolyDataMapper::New();
mapper->SetInputConnection(randomVector->GetOutputPort());
vtkActor *actor = vtkActor::New();
actor->SetMapper(mapper);
actor->GetProperty()->LoadMaterialFromString(shaders1);
actor->GetProperty()->SetColor(1.0, 0.0, 0.0);
actor->GetProperty()->GetShading();
actor->GetProperty()->ShadingOn();
actor->GetProperty()->SetOpacity(0.99); // to force alpha blending.
mapper->MapDataArrayToVertexAttribute("genAttrVector", "BrownianVectors", 0, -1);
vtkRenderer *renderer = vtkRenderer::New();
renderer->SetBackground(0.5, 0.5, 0.5);
vtkRenderWindow *renWin = vtkRenderWindow::New();
renWin->AddRenderer(renderer);
vtkRenderWindowInteractor *interactor = vtkRenderWindowInteractor::New();
interactor->SetRenderWindow(renWin);
renWin->SetSize(400,400);
renWin->Render();
int retVal;
if(MesaHasVTKBug8135(renWin))
{
// Mesa will crash if version<7.3
cout<<"This version of Mesa would crash. Skip the test."<<endl;
retVal=vtkRegressionTester::PASSED;
}
else
{
renderer->AddActor(actor);
renderer->ResetCamera();
renWin->Render();
interactor->Initialize();
renWin->Render();
retVal = vtkRegressionTestImageThreshold(renWin,18);
if( retVal == vtkRegressionTester::DO_INTERACTOR)
{
interactor->Start();
}
}
sphere->Delete();
randomVector->Delete();
mapper->Delete();
actor->Delete();
renderer->Delete();
renWin->Delete();
interactor->Delete();
return !retVal;
}
|