- Apr 28, 2016
-
-
Waldir Pimenta authored
-
30dcadfd Adding default to switch to remove warnings and explicit falltrough Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Julien Finet <julien.finet@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1463
-
- Apr 27, 2016
-
-
325fb50d Fix build error with old clangs without UBSan Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1447
-
f4ca3731 fix renderbuffer isSupported method Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1462
-
Mathieu Westphal (Kitware) authored
-
- Apr 26, 2016
-
-
cc8c3ac4 Removed OS X specific avoidance of realloc() Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1448
-
e45012fc Improve Point Serialization in vtkPResampleToImage Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1412
-
Ken Martin authored
it was using a bad check on apple systems
-
d04df17e Centralize array-to-string conversion in vtkMINCImageAttributes. 1bb1123f Make PrintImageHeader use "double" for image-min, image-max. 329ddf68 Fix the way that MINC IO handles null-termination. 9e0eb985 Compensate for recent changes to vtkDataArray 87f403db Minor improvements to type matching, style, etc. 325ef8b2 Increase size of filename related buffer b6a0ea04 Replace unsafe C string functions with safer varieties Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1453
-
06bdae4c ifdef out unsupported GL method for ES 2/3. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1461
-
David C. Lonie authored
-
Sujin Philip authored
The current technique can cause many small memory allocations and deallocations. This fixes it by serializing all the point data in one big array.
-
David Gobbi authored
The strtod() and strtol() methods require a null-terminated string, so call ConvertDataArrayToString() to guarantee null-termination.
-
David Gobbi authored
The MINC image-max and image-min arrays are stored as double arrays, so the data type should be printed as "double" when the header info is printed as text.
-
David Gobbi authored
When vtkMINCImageReader creates a vtkCharArray to store a NetCDF attibute, it allocates one more byte than the number of chars, in order to make room for a null terminator. The way it did so was unsafe and incompatible with the new vtkGenericDataArray changes. This new code does the same thing, but in a compatible manner.
-
Sean McBride authored
-Changed ConvertDataArrayToString to return “” instead of null upon empty vtkCharArray, matching previous behaviour before recent vtkDataArray changes. Public and private clients of this API expect this behaviour. -Defend against null from GetPointer()
-
Sean McBride authored
-
Sean McBride authored
-
Sean McBride authored
strcpy->strncpy sprintf->snprintf
-
- Apr 25, 2016
-
-
fe8b62ac take another pass at the LIC mapper Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1454
-
Ken Martin authored
Try to clean up a few things I did not have time to address in the first conversion. It now doesn't do the wierd thing with setting its Output so that it can map vectors to tcoords. This is now properly passed as an attribute. There were a couple bugs realted to parallel composite LIC one being a vertex coordinate system issues the other being a MPI deadlock with icet
-
3d7e0968 Free timer query with other graphics resources. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1452
-
be19b73b Style, syntax and indents 0063c6a9 PolxarAxisFeatures: Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1441
-
- Apr 22, 2016
-
-
28af4395 Added property to clamp depth values to back face 0d75d99e Use full depth range for lookup table for test cases 378470fa Update tests for 32 bit depth map e858974e Remove debugging code 01ff2215 Support all types of texture to image conversion e52bb30d Change the depth texture to be 32 bit Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1449
-
Sankhesh Jhaveri authored
This change alters existing behavior of setting the depth values of the transparent voxels as the depth value of the backface of the volume. By default, the depth value will be set to maximum (1.0) and if the user enables clamping to backface, the original behavior is exhibited.
-
Sankhesh Jhaveri authored
-
David C. Lonie authored
-
2d422209 Re-order warning eliminated. 5a7ed988 Updated the dependency list. 025f709a Merge remote-tracking branch 'origin/master' into add_tecplot_table_reader 4facb8be fixed style issues with braces and indentation 6e725933 Merge remote-tracking branch 'origin/master' into add_tecplot_table_reader a7fbbaf2 updated module.cmake according to best practices c2267b27 converted exceptions to vtkErrorMacro with return value of 0 on error bb68876d Merge remote-tracking branch 'origin/master' into add_tecplot_table_reader ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1387
-
6ba3090e Update the vtkDICOM remote module to v0.7.7. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1450
-
David Gobbi authored
-
- Apr 21, 2016
-
-
Sankhesh Jhaveri authored
-
Sankhesh Jhaveri authored
-
Sankhesh Jhaveri authored
The original implementation assumed an 8 bit texture. The new implementation supports images of all types.
-
Sankhesh Jhaveri authored
-
Sean McBride authored
Changed to just use realloc() as with other OSes. The code path forced by this was much slower, as measured by Instruments.app.
-
Sean McBride authored
-
28326553 Modify DDP occlusion queries for OGL ES 3.0. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1445
-
David C. Lonie authored
ES 3.0 only supports the ANY_SAMPLES_PASSED query, so use that instead. We ignore the occlusion ratio in this case, and instead will only abort early if all fragments pass (essentially acting as though OcclusionRatio == 0.).
-
7a5a3781 change release doc to encourage signed tags Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Merge-request: !1435
-
Mathieu Westphal (Kitware) authored
-