Skip to content

Commit

Permalink
int
Browse files Browse the repository at this point in the history
  • Loading branch information
Meakk committed Feb 6, 2024
1 parent ca5bdc4 commit 8597841
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <vtkOpenGLBufferObject.h>
#include <vtkOpenGLRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkShader.h>

#include "vtkF3DBitonicSort.h"
Expand Down Expand Up @@ -42,9 +43,10 @@ int TestF3DBitonicSort(int argc, char* argv[])

vtkNew<vtkRenderWindow> renWin;
renWin->OffScreenRenderingOn();
renWin->Start();

renWin->Finalize();
vtkNew<vtkRenderWindowInteractor> iren;
iren->SetRenderWindow(renWin);
iren->Initialize();

// if (!vtkShader::IsComputeShaderSupported())
//{
Expand Down

0 comments on commit 8597841

Please sign in to comment.