Atri Bhattacharya
c97ea51671
https://gitlab.kitware.com/vtk/vtk/-/blob/master/Documentation/release/9.3.md - Add patches: * 0001-ioss-update-fmt-includes.patch - Drop upstream patches: * fix_rendering_core_linkage - New features and bugfixes: * The vendored `fmt` library has been updated to 10.1.1. * Fix SIGSEGV on `vtkCompositeDataProbeFilter`. * Add `ComponentName` in `vtkImageAlgorithm` and subclasses. * Fix UT record support in `vtkDICOMParser` * Fix for reading binary XML files > 2Gb on Windows. * Fix `ResampleWithDataSet` with an HTG source using MPI. * Fix `HyperTree` iterator in `ExtractElements` method. * Fix `vtkOpenGLRenderWindow::GetZBufferData` in OpenGL ES 3. * Fix GPU Ray Cast Volume Rendering with `ModelTransformMatrix`. * Fix Off-axis stereo image separation issue. * Fix Display Attribute Inheritance `vtkOpenGLGlyph3DMapper`. OBS-URL: https://build.opensuse.org/package/show/science/vtk?expand=0&rev=193
17 lines
594 B
Diff
17 lines
594 B
Diff
--- a/Rendering/CellGrid/vtkDGOpenGLRenderer.cxx_orig 2023-12-28 06:22:40.696501865 +0100
|
|
+++ b/Rendering/CellGrid/vtkDGOpenGLRenderer.cxx 2023-12-28 06:23:24.633470522 +0100
|
|
@@ -1046,11 +1046,13 @@
|
|
}
|
|
|
|
// III. Render draw
|
|
+#ifndef GL_ES_VERSION_3_0
|
|
if (renderer->GetUseImageBasedLighting() && renderer->GetEnvironmentTexture())
|
|
{
|
|
vtkOpenGLState* ostate = oglRenWin->GetState();
|
|
ostate->vtkglEnable(GL_TEXTURE_CUBE_MAP_SEAMLESS);
|
|
}
|
|
+#endif
|
|
// a. Update shaders
|
|
state->CellBO.VAO->Bind();
|
|
// state->LastBoundBO = &state->CellBO; // We only bind the one...
|