- Sep 03, 2015
-
-
Casey Goodlett authored
In some rare cases the action index may not be a index into getPointerId. To workaround this issue do the following 1) Change the semnatics of HandleMotionEvent to use the pointer id directly rather than looking up from index in C code. 2) Wrap the java code in a try/catch to catch invalid motion events.
-
- Sep 02, 2015
-
-
04c45455 Add a mechanism where shader uniforms can be updates 1b5d4d38 Add ability to override the shader template as well 59db1ffe Fix compile issue c0c0e7a7 Add an ability for user code to modify the default VTK shaders Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !614
-
e5feafae Fix IntersectWithLine methods for vtkQuadraticWedge and vtkQuadraticTetra. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !593
-
Ken Martin authored
Added an event that fires when the shader updsates so that programs can use it to update any uniforms they want to
-
e12a8157 Add a vtkTemplate2Macro to dispatch to two template arguments at once Reviewed-by:
Will Schroeder <will.schroeder@kitware.com> Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !581
-
T.J. Corona authored
Part of this fix is an application of a patch by Sascha van Vliet (bug report 0015681). During IntersectWithLine, points within a local instance of a QuadraticTriangle are updated to perform the operation. These points were not being set properly. An additional visual test of intersections for quadractic cells has been added, and a bug in vtkQuadraticWedge was found and fixed.
-
65690ed5 Remove the sampleRate arg in some ExtractGridHelper API. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mickael PHILIT <mickey.phy@gmail.com> Merge-request: !618
-
- Sep 01, 2015
-
-
1f90f47f Merge branch 'upstream-kwsys' into update-kwsys dc6da038 KWSys 2015-08-28 (dc3fdd7f) Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !613
-
Brad King authored
The vtkTemplateMacro is useful for dispatching to filter implementations that use one template argument. Add a new vtkTemplate2Macro to dispatch filter implementations that use two template arguments. Use a single switch over two VTK type ids packed into a single integer. Suggested-by:
Will Schroeder <will.schroeder@kitware.com>
-
Ken Martin authored
Add methods to override the shader code templates.
-
a3004a49 Add a missing newline Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !617
-
David C. Lonie authored
This was removed from usage in an earlier commit, but a dead argument was left behind.
-
Ken Martin authored
Fix a minor compile issue
-
a74fe010 Use this->SampleRate instead of sampleRate to benefit from optimization 14351fb0 Prevent out of bounds access of CellData arrays Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Lonie <david.lonie@kitware.com> Merge-request: !596
-
d28e3a68 Fix implicit inheritance type compiler warning Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !585
-
ce137831 Fix issue with polygon offset being left on Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !612
-
Ken Martin authored
Add a missing newline
-
d38c65ba Add PBO support into ES 3 builds and fix a warning Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !606
-
4eae3d14 Reflect API change in the optional FreeType benchmark. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !615
-
David C. Lonie authored
-
Ken Martin authored
Add a method so that users can modify the existing VTK shaders if desired. In the future will also need to add a method for users to set uniforms as well and maybe eventually map data arrays to attributes.
-
6c1b1cd6 Added alternate regression test image 0a27e58c Cleaned up test image e785caa8 Cleaned up callbacks effa1ddd Added new widget: vtkImplicitCylinderWidget Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !562
-
f09903e4 COMP: Add logic to selectively use OpenGL or OSMesa. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !427
-
Brad King authored
-
Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ dc3fdd7f | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' cdaf522c..dc3fdd7f Brad King (9): 15a16826 Remove include <kwsys/ios/*> and kwsys_ios:: compatibility layer a5799c17 Remove unused KWSYS_IOS_USE_{SSTREAM,STRSTREAM_H,STRSTREA_H} checks 198957cf Remove unused KWSYS_IOS_USE_SSTREAM check 24d2b60e Remove support for pre-C++98 streams 2a581c30 Remove support for pre-C++98 std::string missing operators 5f3fd465 Remove support for pre-C++98 STL cded1574 Remove support for pre-C++98 STL from hash_map and hash_set f130a3ab Remove kwsys/cstddef compatibility header dc3fdd7f Remove support for pre-C++98 template capabilities
-
1eedaf88 Propagate safe variant setting through children of vtkAbstractArray. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !611
-
T.J. Corona authored
This fix is in reference to bug report 0014340, and is an extension of the change made in commit 84b126f9. vtkAbstractArray and its children have the convention of a fast, unsafe method for setting elements (SetXXX) and a safer, slower method (InsertXXX). In the prior commit, this convention was extended to setting with variant values. In vtkAbstractArray, InsertVariantValue was not a pure virtual method, and it called the unsafe SetXXX method (which led to problems, see the bug report). By making this method pure virtual, we ensure that InsertXXX is indeed safe for each container. It also enforces the pattern in place for SetXXX vs InsertXXX with other variable types.
-
Ken Martin authored
Fix a case where the polygon offset could be left on
-
- Aug 31, 2015
-
-
Ken Martin authored
Add PBO support into OpenGL ES 3 builds Fix a warning on ES 2
-
6858183e Merge branch 'upstream-kwsys' into update-kwsys 9bbfa77c KWSys 2015-08-24 (cdaf522c) Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !608
-
Dan Lipsa authored
Use vtkOpenGL.cmake to decide to use (LINK_PRIVATE) OpenGL or Offscreen Mesa. OpenGL is now LINK_PRIVATE, so additional libraries and tests need to include OpenGL. Include the following in your CMakeLists.txt: include(vtkOpenGL) vtk_opengl_link(${module}) for every ${module} that uses OpenGL. This takes care of include directories and linking of proper libraries.
-
Ben Boeckel authored
-
Ben Boeckel authored
* freetype-32bit-error-release: vtkFreeTypeTools: support VTK_USE_64BIT_IDS=OFF
-
ed38cd19 vtkFreeTypeTools: support VTK_USE_64BIT_IDS=OFF Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !598
-
Will Schroeder authored
-
Will Schroeder authored
-
Will Schroeder authored
The callbacks associated with moving the cylinder have been cleaned up.
-
Will Schroeder authored
Added the widget and representation (vtkImplicitCylinderWidget and vtkImplicitCylinderRepresentation). Modified the implicit function vtkCylinder to support arbitrary center and rotation axis.
-
608b1a47 Update the wrapper documentation for Python 3. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !609
-
4d3bc03f The Py3K wrapping broke init args for subclasses. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !600
-