- Oct 20, 2016
-
-
Ken Martin authored
for hololens support
-
- Oct 13, 2016
-
-
be5e9903 Bugfixes and Improvements for vtkPolarAxesActor Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !2024
-
4cf18951 fix ios getpixeldata calls Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2070
-
Mathieu Westphal (Kitware) authored
* Correcting a bug with accumulation of TickPoints at each tick building Corrects a bug in the vtkPolarAxes where the tick points where accumulated, drawing more and more points as we build the axes multiple times * Removing useless parameter * Correcting axis follower angle LOD Corrects the way angle LOD works. Before this change, disabling the LOD would not mean that all is visible but merelly that only current visible will stay visible * Correcting title and exponent location modified * Correcting polar axes documentation * Correcting numberOfRadialAxes default * Fix the TickSize computation Changes the way the tick sizex behave, enabling user to change them even to automatic computation of tick is enable, and autocomputing tick size when it's values is zero
-
- Oct 12, 2016
-
-
0e1e9466 Clamp volume component weights to between 0.0 and 1.0 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2068
-
b3e3bd3a Get rid of unused variable. ee6200ee Swapped x, y radii. 990386a1 SgnPower(x,n) returns 0 if abs(x) <= 1.0e-6. a3fdb32c Missed some header test fails. 98e80b44 Removing the line continuation character. 74419091 Fixing bad indentation. fd994948 Fixing header test fails. c7b75843 Fixing the triangulation of the Parametric Surfaces. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2064
-
Andrew Maclean authored
-
Andrew Maclean authored
-
Sankhesh Jhaveri authored
-
7c9ac01f Call glFlush() after initializing a new context. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2066
-
511c6a44 Prevent crash in HiddenLineRemovalPass. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !2067
-
- Oct 11, 2016
-
-
Andrew Maclean authored
-
David C. Lonie authored
Fix a bug where a NULL pointer may be dereferenced.
-
Ken Martin authored
ios has issues with GL_RGB and GL_BACK_LEFT
-
a279244d Add a display-coordinate offset to billboard text. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
T.J. Corona <tj.corona@kitware.com> Merge-request: !2054
-
David C. Lonie authored
There were some odd behaviors on ParaView when using pvserver with --use-offscreen-rendering (see #16943). The initial render on a new context would result in an empty scene. This behavior started when calls to glFlush() in vtkRenderWindow::Frame() were removed for performance reasons. This patch fixes the rendering issue, and since it only happens for new contexts, won't hurt performance.
-
b7308935 Android: Remove unused toolchain file 982ba05a Android: Port superbuild to CMake 3.7 capabilities 971c3705 Android: Simplify superbuild compile tools target build fc19439b Android: Require CMake 3.7 for superbuild 9c744b13 Android: Port build system to CMake 3.7 capabilities Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !2062
-
99607039 if msaa cannot find a working context disable it win32 Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !2065
-
Brad King authored
We no longer need the `android.toolchain.cmake` file because our Android superbuild now configures using CMake 3.7's capabilities.
-
Brad King authored
CMake 3.7 adds support for cross-compiling to Android without a complex toolchain file. Port our Android superbuild script to work without the `android.toolchain.cmake` file. Since CMake 3.7 now detects a lot of information about the target platform up front we need to use a fresh build tree for each API/ABI combination.
-
Brad King authored
-
Brad King authored
-
Brad King authored
CMake 3.7 adds support for cross-compiling to Android without a complex toolchain file. Port our main CMake build system to work without the `android.toolchain.cmake` file: ``` $ cmake ../VTK \ -DCMAKE_SYSTEM_NAME=Android \ -DCMAKE_ANDROID_NDK=/path/to/ndk \ -DVTKCompileTools_DIR=/path/to/vtk-compile-tools \ -DOPENGL_ES_VERSION=3.0 \ -DVTK_Group_StandAlone=OFF ```
-
Ken Martin authored
The old code would reduce the number of samples requested but never disable it. This topic makes it so that after reducing the number, if will if needed try disabling MSAA altogether.
-
daea12d9 Fix a uninitalized memory in chart matrix Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !2061
-
Andrew Maclean authored
-
Andrew Maclean authored
-
Andrew Maclean authored
-
Andrew Maclean authored
-
Andrew Maclean authored
Bill Lorenson noticed that the front face of orientable surfaces was being displayed as a back face. This arose as a "hack" when these functions were first implemented because the cross-product used to create the normals was right-handed, thus the triangulation orientation was clockwise. Additionally there were weird triangulations in the ParametricSuperEllipsoid and ParametricSuperToroid. The following three fixes have been applied: 1) The orientation of the normals is fixed in the case of anti-clockwise ordering by calculating cross(Dv,Du) instead of cross(Du,Dv). When this is done the normals point in the expected direction and the front face is rendered correctly. See: vtkParametricFunctionSource.cxx. 2) All the surfaces now implement anti-clockwise ordering with respect to the triangulation. 3) The ParametricSuperEllipsoid and ParametricSuperToroid have been reworked, now the surface is constructed as four pieces that are abutted together, this removes the triangulations resulting in weird appearances. 4) In order to implement the anti-clockwise ordering in the triangulation the x, y points have had to be swapped in a few cases. 5) TestParametricFunctions.png has had to be replaced. The images for ParametricTorus, ParametricSuperEllipsoid and ParametricSuperToroid changed as a result of the above changes
-
- Oct 10, 2016
-
-
048f89ab ifdef out valuepass code on ES2 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2060
-
Mathieu Westphal (Kitware) authored
his commit fix a valgrind detected memory bug of uninitialized memory
-
Ken Martin authored
ValuePass was having issues with OpenGL ES2 so this topic ifdefs the code on that platform. The result is fairly messy so it really needs another pass at some point to do it right. This is a quick fix as we are heading to a release.
-
4284d9ed vtk_jsoncpp.h needs to define VTK_BUILD_SHARED_LIBS Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David E DeMarle <dave.demarle@kitware.com> Merge-request: !2056
-
522e0bdd Change sample counter datatype to unsigned integer 8adca088 Minor documentation changes to reflect current implementation 4d5a1b4a Safely error out of fixed point mapper when using the average IP mode d53eb241 Test for volume rendering with average intensity blend 94b2f0ca Compute scalar value in the volume scalar range space 0d22e4f4 GPU volume Mapper supports average intensity blend 3e49c8fc Shading done for composite blends only in volume rendering d654b034 Add support for average blend in GPU volume mapper ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E DeMarle <dave.demarle@kitware.com> Merge-request: !2026
-
- Oct 08, 2016
-
-
ba43836c add option to draw lines as tubes Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !2050
-
- Oct 07, 2016
-
-
2943135a Fixes build errors in ES 2.0. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !2055
-
Ken Martin authored
similar to the points as spheres this draws lines as things that at least sort of look like tubes.
-
Shawn Waldon authored
This is used to set the dllimport macros and it cannot assume that vtkConfigure.h is already included.
-
Alvaro Sanchez authored
-